반응형
https://school.programmers.co.kr/learn/courses/30/lessons/120807
class Solution {
public int solution(int num1, int num2) {
if(num1 == num2) {
return 1;
}
return -1;
}
}
class Solution {
public static void main(String[] args) {
int solution1 = solution(2, 3);
int solution2 = solution(11, 11);
int solution3 = solution(7, 99);
System.out.println(solution1);
System.out.println(solution2);
System.out.println(solution3);
}
public static int solution(int num1, int num2) {
if(num1 == num2) {
return 1;
}
return -1;
}
}
반응형
'Portpolio > codingtest' 카테고리의 다른 글
프로그래머스 lv0. 두 수의 곱 java (0) | 2023.12.18 |
---|---|
프로그래머스 lv0. 몫 구하기 java (0) | 2023.12.18 |
프로그래머스 lv1. 크기가 작은 부분 문자열 java (1) | 2023.12.18 |
프로그래머스 lv.0 문자열 섞기 java (1) | 2023.11.29 |
프로그래머스 lv0 길이에 따른 연산 java (0) | 2023.11.19 |
댓글