摘要: LeetCode 292 Nim Gamehttps://leetcode.com/problems/nim-game/当能被4整除时,才会输。bool canWinNim(int n) { return n%4;} 阅读全文
posted @ 2015-10-14 19:27 Walker_Lee 阅读(89) 评论(0) 推荐(0) 编辑