292. Nim 游戏
为保证权益,题目请参考 292. Nim 游戏(From LeetCode).
解决方案1
CPP
C++
/*
* LeetCode 292
* 这个是LeetCode的腾讯面试题的【NIM游戏】
*/
#include <iostream>
#include <vector>
#include <climits>
using namespace std;
class Solution {
public:
bool canWinNim(int n) {
return n % 4 != 0;
}
};
int main() {
return 0;
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Python
python
# 292. Nim 游戏
# https://leetcode-cn.com/problems/nim-game/
################################################################################
class Solution:
def canWinNim(self, n: int) -> bool:
t = n % 4
return t != 0
################################################################################
if __name__ == "__main__":
solution = Solution()
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17