본문 바로가기
Computer Science/Coding Test

c++(cpp) 프로그래머스 - 코딩 테스트 : 3진법 뒤집기

by hzyiunn 2022. 8. 11.
728x90
반응형

#include <string>
#include <vector>
#include <algorithm>
using namespace std;

int solution(int n) {
    int answer = 0;
    vector<int> v;
    while(n>0)
    {
        v.push_back(n%3);
        n/=3;
    }
    reverse(v.begin(), v.end());
    int num = 1;
    
    for(int i = 0; i < v.size(); i++)
    {
        answer += v[i]*num;
        num *=3;
    }
    return answer;
}
728x90
반응형

댓글