728x90
https://school.programmers.co.kr/learn/courses/30/lessons/181881?language=csharp
소스코드
using System;
using System.Collections.Generic;
using System.Linq;
public class Solution
{
public int solution(int[] arr)
{
int min = 0;
while (true)
{
int[] temp = new int[arr.Length];
Array.Copy(arr, 0, temp, 0, arr.Length);
for (int i = 0; i < arr.Length; i++)
{
if (arr[i] >= 50 && arr[i] % 2 == 0)
arr[i] = arr[i] / 2;
else if (arr[i] < 50 && arr[i] % 2 == 1)
arr[i] = (arr[i] * 2) + 1;
}
if (temp.SequenceEqual(arr))
break;
min++;
}
return min;
}
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.0 길이에 따른 연산 C#(list.Aggregate) (0) | 2023.06.08 |
---|---|
[프로그래머스]Lv.0 1로 만들기 C# (0) | 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 |
[프로그래머스]Lv.0 n 번째 원소부터 C# (Skip) (0) | 2023.06.07 |