leetcode/292. Nim Game

来源:互联网 发布:安利云服务软件 编辑:程序博客网 时间:2024/05/17 06:33

bool canWinNim(int n){
return n % 4 != 0; //只要是4的倍数,都不能赢
}

0 0
原创粉丝点击