标签:
原题链接在这里:https://leetcode.com/problems/nim-game/
列出前几个数,发现只要是四的倍数就return false, 其他都是return true.
AC Java:
1 public class Solution { 2 public boolean canWinNim(int n) { 3 if(n <= 0){ 4 return false; 5 } 6 if(n%4 == 0){ 7 return false; 8 } 9 return true; 10 } 11 }
标签:
原文地址:http://www.cnblogs.com/Dylan-Java-NYC/p/4903343.html