728x90
반응형
class Solution {
public int[] solution(int money) {
int[] answer = new int[2];
answer[0] = money/5500;
answer[1] = money%5500;
return answer;
}
}
728x90
반응형
'알고리즘 문제풀이 > Programmers - 자바' 카테고리의 다른 글
프로그래머스 - 중복된 숫자 개수 (0) | 2023.02.23 |
---|---|
프로그래머스 - 배열 두배 만들기 (0) | 2023.02.23 |
프로그래머스 - 삼각형의 완성조건 (1) (0) | 2023.02.22 |
프로그래머스 - 문자 반복 출력하기 (0) | 2023.02.22 |
프로그래머스 - 최댓값 만들기 (1) (0) | 2023.02.22 |