프로그래머스 181899 카운트 다운

1 개요[ | ]

프로그래머스 181899 카운트 다운

2 C++[ | ]

#include <string>
#include <vector>

using namespace std;

vector<int> solution(int start, int end_num) {
    vector<int> answer;
    for(int i=start; i>=end_num; i--) {
        answer.push_back(i);
    }
    return answer;
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}