Nellie's Blog

[프로그래머스 입문] 아이스 아메리카노 본문

Back-end/Algorithm

[프로그래머스 입문] 아이스 아메리카노

Nellie Kim 2023. 6. 14. 23:47
728x90

머쓱이는 추운 날에도 아이스 아메리카노만 마십니다. 아이스 아메리카노는 한잔에 5,500원입니다. 머쓱이가 가지고 있는 돈 money가 매개변수로 주어질 때, 머쓱이가 최대로 마실 수 있는 아메리카노의 잔 수와 남는 돈을 순서대로 담은 배열을 return 하도록 solution 함수를 완성해보세요.

 

입출력 예

money result

5,500 [1, 0]

15,000 [2, 4000]

 

class Solution {

	public int[] solution(int money) {
	int[] answer = {};
	return answer;
	}
}

 

내 풀이

class Solution {
	public int[] solution(int money) {
    
	return new int[] { money/5500, money%5500 };
	}
}

 

다른사람 풀이

class Solution {
	public int[] solution(int money) {

	int[] answer = new int[2];
	answer[0] = money/5500;
	answer[1] = money%5500;

	return answer;
	}
}