Uma implementação muito boba do jogo Pedra-Papel-Tesoura
function game(guess){ return (Math.round(guess.charCodeAt()%110/1.2)+1-~~(Math.random()*3))%3-1}function gameDebuggable(g, debug){ var b = ~~(Math.random()*3) , g = Math.round(g.charCodeAt()%110/1.2)-2 , result = (g-b+3)%3-1 if (debug){ debug(b,g,result) } return result}function test(debug){ var n = debug ? …
Continuar lendo