솔루션
const solution = (n, t) => {
const answer = n * 2 ** t;
console.log(answer);
return answer;
};
솔루션
const solution2 = (n, t) => {
console.log(n << t);
return n << t;
};
솔루션
const solution3 = (n, t) => {
while (t-- > 0) {
n *= 2;
}
console.log(n);
return n;
};
솔루션
const solution4 = (n, t) => {
const answer = n * Math.pow(2, t);
console.log(answer);
return answer;
};
'프로그래머스(Javascript) > Level 0' 카테고리의 다른 글
[프로그래머스 | 자바스크립트] 문자열안에 문자열 (0) | 2023.02.05 |
---|---|
[프로그래머스 | 자바스크립트] 제곱수 판별하기 (0) | 2023.02.05 |
[프로그래머스 | 자바스크립트] 문자열 정렬하기(2) (0) | 2023.02.05 |
[프로그래머스 | 자바스크립트] OX 퀴즈 (0) | 2023.02.05 |
[프로그래머스 | 자바스크립트] 7의 개수 (0) | 2023.02.04 |