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 | 52440ec329911f852d116816bea5f298424b3ea3 (patch) | |
tree | a5a712db17bcd97ca353c22883500bbc54ee6751 /works | |
parent | 1d364bcad49ccd341ba68ad4c31c4b0636a9cab9 (diff) | |
download | crupest-52440ec329911f852d116816bea5f298424b3ea3.tar.gz crupest-52440ec329911f852d116816bea5f298424b3ea3.tar.bz2 crupest-52440ec329911f852d116816bea5f298424b3ea3.zip |
import(solutions): Add problem 1025 .
Diffstat (limited to 'works')
-rw-r--r-- | works/solutions/cpp/1025.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/works/solutions/cpp/1025.cpp b/works/solutions/cpp/1025.cpp new file mode 100644 index 0000000..69d75d9 --- /dev/null +++ b/works/solutions/cpp/1025.cpp @@ -0,0 +1,8 @@ +class Solution +{ +public: + bool divisorGame(int N) + { + return N % 2 == 0; + } +}; |