728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/68644?language=csharp
using System.Collections.Generic;
using System.Linq;
public class Solution {
public int[] solution(int[] numbers) {
List<int> answer = new List<int>();
for (int i = -1; ++i < numbers.Length;)
for (int j = i + 1; j < numbers.Length; j++)
answer.Add(numbers[i] + numbers[j]);
return answer.Distinct().OrderBy(x => x).ToArray();
}
}
순수 배열로도 풀 수 있긴 한데 편하게 하려고 List...
음 근데 어차피 중복 제거할때 Linq 한번 거치긴 하겠다
반응형
'프로그래머스_C# > Level_1' 카테고리의 다른 글
[프로그래머스 C#] 예산 (0) | 2021.09.04 |
---|---|
[프로그래머스 C#] 1주차 부족한 금액 계산하기 (0) | 2021.09.04 |
[프로그래머스 C#] 2016년 (0) | 2021.09.03 |
[프로그래머스 C#] 가운데 글자 가져오기 (0) | 2021.09.02 |
[프로그래머스 C#] 두 정수 사이의 합 (0) | 2021.09.02 |