SMALL
안녕하세요 남갯입니다.
public class Distinct {
public static int solution(int[] A) {
// write your code in Java SE 8
HashSet<Integer> set = new HashSet<>();
for (int a : A) {
set.add(a);
}
return set.size();
}
}
LIST
'IT > 알고리즘' 카테고리의 다른 글
[코딜리티] - Lesson 6. Triangle (0) | 2019.09.02 |
---|---|
[코딜리티] - Lesson 5. CountDiv (1) | 2019.08.27 |
[코딜리티] - Lesson 5. GenomicRangeQuery (0) | 2019.08.20 |
[코딜리티] - Lesson 5. PassingCars (0) | 2019.08.19 |
[코딜리티] - Lesson 4. MissingInteger (0) | 2019.08.13 |