class Solution {
public int solution(int num1, int num2) {
return (num1-num2 == 0)? 1 : -1;
}
}
class Solution {
public int solution(int num1, int num2) {
return (num1==num2)? 1 : -1;
}
}
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] 두 수의 합 (0) | 2023.02.22 |
---|---|
[프로그래머스/자바] 두 수의 곱 (0) | 2023.02.22 |
[프로그래머스/자바] 몫 구하기 (0) | 2023.02.21 |
[프로그래머스/자바] 두 수의 차 (0) | 2023.02.21 |
[프로그래머스/자바] 나머지 구하기 (0) | 2023.02.21 |