Leetcode in Java && Oracle
422 subscribers
8 photos
397 files
400 links
Second channel: @codeforces_java

Let's Develop Together!
Download Telegram
image_2022-05-25_18-00-54.png
18.6 KB
#N1025. Divisor Game
problem link
#solution
class Solution {
public boolean divisorGame(int n) {
return n%2==0;
}
}