티스토리 뷰
title: "3진법 뒤집기"
category: 프로그래머스[Level-1]
tags: [C++, JavaScript, 프로그래머스]
date: "2021-01-19"
문제 링크
C++
#include <string>
#include <vector>
#include <iostream>
#include <cmath>
using namespace std;
int solution(int n) {
int answer = 0;
vector<int> v;
// 3진법 구하기
while(true){
if(n < 1) break;
v.push_back(n%3);
n = n/3;
}
// 10진법으로 바꾸기
for(int i=0; i<v.size(); i++){
answer += v[i] * pow(3, v.size()-i-1);
}
return answer;
}
JavaScript
function solution(n) {
var answer = 0;
let arr = [];
// 3진법 바꾸기
while (true) {
if (n < 1) break;
arr.push(Math.floor(n % 3)); // 소수점 버리기
n /= 3;
}
// 10진법 바꾸기
arr.forEach((value, index, array) => {
answer += value * Math.pow(3, array.length - index - 1);
});
return answer;
}
728x90
반응형
'Programmers Solutions > Level-1' 카테고리의 다른 글
[프로그래머스] 나누어 떨어지는 숫자 배열 (0) | 2021.01.30 |
---|---|
[프로그래머스] 가운데 글자 가져오기 (0) | 2021.01.30 |
[프로그래머스] 2016년 (0) | 2021.01.30 |
[프로그래머스] K번째 수 (0) | 2021.01.30 |
[프로그래머스] 체육복 (0) | 2021.01.29 |
댓글