摘要: class Solution(object): def canWinNim(self, n): """ :type n: int :rtype: bool """ if n%4==0: return False else: return True 阅读全文
posted @ 2018-08-18 05:32 ffeng0312 阅读(113) 评论(0) 推荐(0)