LeetCode1025.除数博弈

class Solution {
public:
    bool divisorGame(int N) {
        if(N%2==0) return true;
        return false;
    }
};

你可能感兴趣的:(LeetCode1025.除数博弈)