292.nim-game.go 50 B

123
  1. func canWinNim(n int) bool {
  2. return n % 4 != 0
  3. }