CS/코딜리티

문제 // Codility // Sorting // Distinct

문스코딩 2018. 8. 21. 19:34
업데이트 :: 2018.08.21



문제

Compute number of distinct values in an array.

코드

1차 풀이

import java.util.*;
class Solution {
    public int solution(int[] A) {

        // 중복제거
        Set<Integer> set = new HashSet<Integer>();

        for(int a : A) {
            set.add(a);
        }

        return set.size();
    }
}

결과

1차 100%

  • 정확 : 100%
  • 성능 : 100%

Created by MoonsCoding

e-mail :: jm921106@gmail.com

반응형