반응형 프로그래머스145 [프로그래머스 - JAVA] 세균 증식 내 풀이 class Solution { public int solution(int n, int t) { int answer = 0; answer = n; for (int i = 0; i < t; i++) { answer = answer * 2; } return answer; } } 다른 사람 풀이 class Solution { public int solution(int n, int t) { int answer = 0; answer = n 2023. 3. 10. 이전 1 ··· 22 23 24 25 다음 반응형