som911

Results 1 issues of som911

The apple position can stand on a snake position. `const nextApple = state => willEat(state) ? validApplePos(state)(rndPos(state)) : state.apple` `const validApplePos = (state) => (randPos) => state.snake.find( pointEq(randPos) ) ===...