class Solution {
public int[] solution(int money) {
int[] answer = {money/5500, money%5500};
return answer;
}
}
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] 편지 (0) | 2023.04.17 |
---|---|
[프로그래머스/자바] 배열 두 배 만들기 (0) | 2023.04.17 |
[프로그래머스/자바] 특정 문자 제거하기 (0) | 2023.04.12 |
[프로그래머스/자바] 최댓값 만들기 (0) | 2023.04.12 |
[프로그래머스/자바] 중앙값 구하기 (0) | 2023.04.12 |