trivial, but now we have it. ^^

This commit is contained in:
overflowerror 2014-03-17 20:55:26 +01:00
parent c0757bd7cf
commit 25fcabba72

7
code.js Normal file
View file

@ -0,0 +1,7 @@
var code = new Array();
var fuzzyRadius = 5;
var checkCode = function(num, value) {
return (Math.abs(code[num] - value) < fuzzyRadius);
}