首页 > 其他分享> > LeetCode 292. Nim 游戏(Easy) LeetCode 292. Nim 游戏(Easy) 2021-02-08 22:34:18 作者:互联网 题目链接 代码 class Solution: # 0208 数学法(40 ms,14.9 MB) def canWinNim(self, n: int) -> bool: return n % 4 != 0 标签:Nim,int,self,40,class,Easy,292,LeetCode 来源: https://blog.csdn.net/newCraftsman/article/details/113763443