bool divisorGame(int N){
return !(N&0x1);
}
leetcode-1025-除数博弈-C语言
最新推荐文章于 2021-11-02 19:05:29 发布
bool divisorGame(int N){
return !(N&0x1);
}