Skip to content

Releases: gi-b716/autoHack

6.3.0

05 Dec 15:08
6.3.0
b7c39a4
Compare
Choose a tag to compare

Full Changelog: 6.2.1...6.3.0

6.2.1

03 Dec 05:08
6.2.1
f79f916
Compare
Choose a tag to compare

Full Changelog: 6.2.0...6.2.1

6.2.0

29 Nov 14:47
6.2.0
f28c9f8
Compare
Choose a tag to compare

Full Changelog: 6.1.8...6.2.0

6.1.8

24 Nov 15:52
4bbaa22
Compare
Choose a tag to compare

Full Changelog: 6.1.5...6.1.8

6.1.5

23 Nov 14:40
6.1.5
fa9a4c4
Compare
Choose a tag to compare

Full Changelog: 6.1.4...6.1.5

6.1.4

23 Nov 05:11
Compare
Choose a tag to compare

Full Changelog: 6.1.3...6.1.4

6.1.3

23 Nov 00:54
Compare
Choose a tag to compare

Full Changelog: 6.1.2...6.1.3

6.1.2 - Testlib Checker

17 Nov 01:36
6.1.2
7ea0272
Compare
Choose a tag to compare

6.1.1 - Testlib Checker

17 Nov 00:23
6.1.1
49b96a1
Compare
Choose a tag to compare

6.1.0 - Testlib Checker

16 Nov 15:55
6.1.0
dc9b7c0
Compare
Choose a tag to compare

Checker Example:

#include "testlib.h"
#include <cmath>

int main(int argc, char *argv[])
{
	registerTestlibCmd(argc, argv);
	int pans = ans.readInt(), pout = ouf.readInt();
	if (pans == abs(pout)) {
		quitf(_ok, "The answer is correct.");
	}
	else {
		quitf(_wa, "The answer is wrong: expected = %d, fount = %d.", pans, pout);
	}
	return 0;
}

Full Changelog: 6.0.0...6.1.0