【leetcode】除数博弈

bool divisorGame(int N){
    return (N%2)?false :true;
}
原文地址:https://www.cnblogs.com/ganxiang/p/14004193.html