Xiaohe-LeetCode 292 Nim Game

public class Solution {
  public boolean canWinNim(int n) {

    if(n%4==0)
    return false;
    return true;
  }
}

原文地址:https://www.cnblogs.com/CathyXiaohe/p/4985387.html