Search posts...
num
n
class Solution { public int solution(int num, int n) { return num % n == 0 ? 1 : 0; } }
jjack1