프로그래머스 Lv.0 1로 만들기개발자가 되기까지 (2023.08.16~2024.04.15)/[Algorithm] Programmers ver.Java2024. 1. 29. 12:29
Table of Contents
<Solution>
class Solution {
public int solution(int[] num_list) {
int answer = 0;
for(int i = 0; i < num_list.length; i++) {
while(num_list[i] != 1) {
answer++;
if(num_list[i] % 2 == 0) {
num_list[i] = num_list[i] / 2;
} else {
num_list[i] = (num_list[i] -1) / 2;
}
}
}
return answer;
}
}
728x90
@rlozlr :: 얼렁뚱땅 개발자
얼렁뚱땅 주니어 개발자
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!