This website works better with JavaScript
Accueil
Explorer
Aide
Connexion
ikachan
/
leetcode-go
Suivre
1
Voter
1
Fork
0
Fichiers
Tickets
0
Pull Requests
0
Wiki
Aborescence:
cfdbb83721
Branches
Tags
master
leetcode-go
/
leetcode
/
easy
/
292.nim-game.go
292.nim-game.go
50 B
Historique
Raw
1
2
3
func canWinNim(n int) bool {
return n % 4 != 0
}