Search posts...
class Solution { public int solution(int num1, int num2) { return (num1==num2)?1:-1; } }
silver