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