728x90
https://school.programmers.co.kr/learn/courses/30/lessons/181880?language=csharp
소스코드
using System;
public class Solution {
public int solution(int[] num_list) {
int answer = 0;
for (int i = 0; i < num_list.Length; i++)
{
while (true)
{
if (num_list[i] == 1)
break;
int num = num_list[i];
num_list[i] = num % 2 == 0 ? num/2 : (num -1) / 2 ;
answer++;
}
}
return answer;
}
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.0 A 강조하기 C#(Replace) (0) | 2023.06.08 |
---|---|
[프로그래머스]Lv.0 길이에 따른 연산 C#(list.Aggregate) (0) | 2023.06.08 |
※[프로그래머스]Lv.0 조건에 맞게 수열 변환하기 2 C# (SequenceEqual) (1) | 2023.06.08 |
[프로그래머스]Lv.0 왼쪽 오른쪽 C# (Array.IndexOf, skip, take) (0) | 2023.06.07 |
[프로그래머스]Lv.0 순서 바꾸기 C# (Array.Copy, skip, take) (0) | 2023.06.07 |