세균 증식
https://school.programmers.co.kr/learn/courses/30/lessons/120910
- 문제 풀이
1
2
3
4
5
6
7
8
9
10
11
class Solution {
public int solution(int n, int t) {
int current = n;
for (int i = 0; i < t; i++) {
current *= 2;
}
return current;
}
}
이 기사는 저작권자의 CC BY 4.0 라이센스를 따릅니다.