aboutsummaryrefslogtreecommitdiff
path: root/works/solutions/leetcode/cpp/1025.cpp
blob: b26ae02c6af57dbe9de33e554c252e68de0ac2a1 (plain)
1
2
3
4
5
6
7
8
class Solution
{
public:
    bool divisorGame(int N)
    {
        return N % 2 == 0;
    }
};