728x90
https://school.programmers.co.kr/learn/courses/30/lessons/12935
소스코드1
using System;
using System.Collections.Generic;
using System.Linq;
public class Solution
{
public int[] solution(int[] arr)
{
List<int> answer = arr.ToList();
int min = answer.Min();
answer.Remove(min);
if (answer.Count < 1)
answer.Add(-1);
return answer.ToArray();
}
}
소스코드2
using System;
using System.Linq;
public class Solution {
public int[] solution(int[] arr) {
int[] answer = new int[] { };
int min = arr.Min(x => x);
answer = arr.Where(w => w > min).ToArray();
if (answer.Count() < 1)
answer = new int[] { -1 };
return answer.ToArray();
}
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.1 정수 내림차순으로 배치하기 C# (OrderByDescending) (0) | 2023.06.19 |
---|---|
[프로그래머스]Lv.1 정수 제곱근 판별 C# (Sqrt) (0) | 2023.06.19 |
[프로그래머스]Lv.1 평균 구하기 C# (Average) (0) | 2023.06.16 |
[프로그래머스]Lv.1 핸드폰 번호 가리기 C#(padLeft) (0) | 2023.06.16 |
[프로그래머스]Lv.1 x만큼 간격이 있는 n개의 숫자 C#(반복간격공식) (0) | 2023.06.15 |