Search posts...
class Solution { public int solution(int num1, int num2) { if(num1==num2){ return 1; }else { return -1; } } }
송승현의 블로그