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