프로그래머스 134240 푸드 파이트 대회

1 개요[ | ]

프로그래머스 134240 푸드 파이트 대회

2 C++[ | ]

#include <string>
#include <vector>

using namespace std;

string solution(vector<int> food) {
    string answer = "0";
    for(int i=food.size()-1; i>0; i--) {
        string temp(food[i]/2, i+'0');
        answer = temp + answer + temp;
    }
    return answer;
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}