Skip to content

Commit

Permalink
이슈 #319에서 솔루션 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Nov 19, 2024
1 parent 7253591 commit 46d3e84
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Programmers/아이스_아메리카노.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#include <string>
#include <vector>

using namespace std;

vector<int> solution(int money) {
vector<int> answer(2);
answer[0] = money / 5500;
answer[1] = money % 5500;
return answer;
}

0 comments on commit 46d3e84

Please sign in to comment.