https://school.programmers.co.kr/learn/courses/30/lessons/120910
정답
class Solution {
public int solution(int n, int t) {
int answer = 0;
answer = n*(int)Math.pow(2,t);
return answer;
}
}
다른 사람의 풀이
class Solution {
public int solution(int n, int t) {
int answer = 0;
answer = n << t;
return answer;
}
}
class Solution {
public int solution(int n, int t) {
int answer = n;
for(int i=0; i<t; i++){
answer = answer+answer;
}
return answer;
}
}
'Java > 프로그래머스' 카테고리의 다른 글
[JAVA] 프로그래머스 - 7의 개수 (0) | 2024.05.07 |
---|---|
[JAVA] 프로그래머스 - 문자열 정렬하기(2) (0) | 2024.05.07 |
[JAVA] 프로그래머스 - 제곱수 판별하기 (0) | 2024.05.07 |
[JAVA] 프로그래머스 - 문자열안에 문자열 (0) | 2024.05.07 |
[JAVA] 프로그래머스 - OX퀴즈 (0) | 2024.05.06 |