题目:

题解:
Go
func canWinNim(n int) bool {
return n%4 != 0
}
题目:
题解:
func canWinNim(n int) bool {
return n%4 != 0
}