This website works better with JavaScript
Domů
Procházet
Nápověda
Přihlásit se
ikachan
/
leetcode-go
Sledovat
1
Oblíbit
1
Rozštěpit
0
Soubory
Úkoly
0
Pull Requesty
0
Wiki
Strom:
9316409188
Větve
Značky
master
leetcode-go
/
leetcode
/
easy
/
292.nim-game.go
292.nim-game.go
50 B
Historie
Surový
1
2
3
func canWinNim(n int) bool {
return n % 4 != 0
}