Search posts...
class Solution { public String solution(int num) { return num % 2 == 0 ? "Even" : "Odd"; } }
stupefyee