index
:
crupest.git
ali
dev
main
crupest's personal main repo
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
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
;
}
};