프로그래머스 12899 124 나라의 숫자

1 개요[ | ]

프로그래머스 12899 124 나라의 숫자

2 C++[ | ]

#include <string>
#include <vector>

using namespace std;

string solution(int n) {
    string answer = "";
    while(n > 0) {
        n--;
        int r = n%3 + 1;
        if(r==3) r = 4;
        answer = to_string(r) + answer;
        n /= 3;
    }
    return answer;
}
#include <string>
#include <vector>

using namespace std;

string solution(int n) {
    string answer = "";
    while(n > 0) {
        n--;
        answer = "124"[n%3] + answer;
        n /= 3;
    }
    return answer;
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}