물먹는산세베리아

[프로그래머스] 3진법 뒤집기 본문

Algorithm/프로그래머스

[프로그래머스] 3진법 뒤집기

suntall 2021. 1. 25. 01:53
#include <string>
#include <vector>
#include <cmath>

using namespace std;

int solution(int n) {
    int answer = 0;
    for(int i = 0; n > 3; i++){
        answer+=(n%3)*pow(3,@-i);
        n=n/3;
        if(n<3)break;
    }
    return answer+n;
}

@...

코드 다 뜯어 고쳐야 할 듯

'Algorithm > 프로그래머스' 카테고리의 다른 글

[C++] K번째 수  (0) 2022.02.20
[C++] 디스크 컨트롤러  (0) 2022.02.14
[C++] 더 맵게  (0) 2022.02.14
[C++] 주식가격  (0) 2022.01.29
[프로그래머스] 키패드 누르기  (0) 2021.02.03