You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- 머쓱이는 추운 날에도 아이스 아메리카노만 마십니다. 아이스 아메리카노는 한잔에 5,500원입니다. 머쓱이가 가지고 있는 돈 money가 매개변수로 주어질 때, 머쓱이가 최대로 마실 수 있는 아메리카노의 잔 수와 남는 돈을 순서대로 담은 배열을 return 하도록 solution 함수를 완성해보세요.
4
+
5
+
---
6
+
7
+
### 제한사항
8
+
9
+
- 0 < money ≤ 1,000,000
10
+
11
+
---
12
+
13
+
### 입출력 예
14
+
15
+
| money | result |
16
+
| ------ | --------- |
17
+
| 5,500 |[1, 0]|
18
+
| 15,000 |[2, 4000]|
19
+
20
+
---
21
+
22
+
### 입출력 예 설명
23
+
24
+
- 입출력 #1 : 5,500원은 아이스 아메리카노 한 잔을 살 수 있고 잔돈은 0원입니다.
25
+
- 입출력 #2 : 15,000원은 아이스 아메리카노 두 잔을 살 수 있고 잔돈은 4,000원입니다.
26
+
27
+
---
28
+
29
+
### 나의 풀이
30
+
31
+
```javascript
32
+
functionsolution(money) {
33
+
constprice=5500;
34
+
constanswer= [];
35
+
if (money % price ===0) {
36
+
// 돈이 5500의 배수일 때는 잔돈이 없다.
37
+
answer.push(money / price);
38
+
answer.push(0);
39
+
} else {
40
+
// 그렇지 않다면 잔돈을 출력한다.
41
+
constvalue=Math.floor(money / price); // value는 구입 가능한 갯수
0 commit comments