diff --git a/9 May Divisor Game b/9 May Divisor Game new file mode 100644 index 00000000..9357bee0 --- /dev/null +++ b/9 May Divisor Game @@ -0,0 +1,7 @@ +class Solution { + public: + bool divisorGame(int n) { + // code here + return (n%2==0)?1:0; + } +};