【leetcode】Nim 游戏

bool canWinNim(int n){
    return n % 4;  
}
原文地址:https://www.cnblogs.com/ganxiang/p/13673605.html