[Algorithm] 리스트 중복 값 list.Distinct()⭐⭐

업데이트:

카테고리:

태그: ,


list.Distinct()



Algorithm

Algorithm








알고리즘

list = list.Distinct().ToList();
list 에 있는 중복된 요소 지우기



두 개 뽑아서 더하기

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;

public class Solution {
    public int[] solution(int[] numbers) {
        int[] answer = new int[] {};
        List<int> list = new List<int>();
        
        for(int i = 0;i<numbers.Length-1;i++)
        {
            for(int j = i+1; j<numbers.Length;j++)
            {
                list.Add(numbers[i]+numbers[j]);
            }
        }
        list = list.Distinct().ToList();
        answer = list.ToArray();
        Array.Sort(answer);
        return answer;
    }
}

잡담

list.Distinct().ToList();




[Algorithm] Algorithm


참고 : 유니티 TOP


📔

댓글남기기