Show HN: Brain Frog – Can you be random enough for 11 lines of JavaScript? 28 days ago
Less fancy hack here, intercept the prediction function on every punch and force the frog to take the opposite side. const realPunch = punch;
punch = function(myMove) {
oracle.predictNextPunch = function() {
return myMove === 'L' ? 'R' : 'L';
};
realPunch(myMove);
};