LeetCode Solutions
292. Nim Game
Time: $O(1)$ Space: $O(1)$
class Solution {
public:
bool canWinNim(int n) {
return n % 4 != 0;
}
};
class Solution {
public boolean canWinNim(int n) {
return n % 4 != 0;
}
}
class Solution:
def canWinNim(self, n: int) -> bool:
return n % 4 != 0