Level 1. 푸드 파이트 대회
쉬운 문제였다.
#include <iostream>
#include <vector>
using namespace std;
string solution(vector<int> food)
{
string answer = "0";
for (int i = food.size() - 1; 0 < i; --i)
{
string sub(food[i] / 2, '0' + i);
answer = sub + answer + sub;
}
return answer;
}
'자료구조 & 알고리즘 > 프로그래머스' 카테고리의 다른 글
Level 1. 가장 가까운 같은 글자 (0) | 2023.02.17 |
---|---|
Level 1. 폰켓몬 (0) | 2023.02.16 |
Level 1. [1차] 비밀지도 (0) | 2023.02.14 |
Level 1. 콜라 문제 (0) | 2023.02.13 |
Level 1. 크기가 작은 부분 문자열 (0) | 2023.02.12 |