728x90
SMALL
안녕하세요 남갯입니다.
public int solution(int[] A) {
// write your code in Java SE 8
int result = 1;
Map<Integer, Boolean> map = new HashMap<>();
for (int a : A) {
if (a > 0)
map.put(a, true);
}
for(int i = 0; i < map.keySet().size(); i++){
if(!map.containsKey(result)){
return result;
}
result ++;
}
return result;
}
728x90
LIST
'IT > 알고리즘' 카테고리의 다른 글
[코딜리티] - Lesson 5. GenomicRangeQuery (0) | 2019.08.20 |
---|---|
[코딜리티] - Lesson 5. PassingCars (0) | 2019.08.19 |
[코딜리티] - Lesson 4. MaxCounters (0) | 2019.08.12 |
[코딜리티] - Lesson 4. FrogRiverOne (0) | 2019.08.12 |
[코딜리티] - Lesson 3. TapeEquilibrium (0) | 2019.08.05 |