diff options
author | crupest <crupest@outlook.com> | 2020-09-21 16:15:03 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-09-21 16:15:03 +0800 |
commit | 14311353518c414c4cde98f2aa5e206dd3703171 (patch) | |
tree | 5de93911a7bed264645f8426a5cb047ec38224cb | |
parent | 3f552fd2413d75d3113d09bfc6d4ab7a1c999c67 (diff) | |
download | solutions-14311353518c414c4cde98f2aa5e206dd3703171.tar.gz solutions-14311353518c414c4cde98f2aa5e206dd3703171.tar.bz2 solutions-14311353518c414c4cde98f2aa5e206dd3703171.zip |
Add problem 1025 .
-rw-r--r-- | cpp/1025.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cpp/1025.cpp b/cpp/1025.cpp new file mode 100644 index 0000000..69d75d9 --- /dev/null +++ b/cpp/1025.cpp @@ -0,0 +1,8 @@ +class Solution +{ +public: + bool divisorGame(int N) + { + return N % 2 == 0; + } +}; |