-
Codility - MissingInteger알고리즘 문제 풀이 2021. 2. 22. 23:14
fun solveMissingInteger(A: IntArray): Int { val numSet = A.toSet() // 코틀린 1.3 기준 A.max()?.let { for (i in 1..it + 1) { if (!numSet.contains(i)) { return i } } } return 1 }
반응형'알고리즘 문제 풀이' 카테고리의 다른 글
프로그래머스 [위클리 7주차] - 입실 퇴실 (0) 2021.09.14 Codility - BinaryGap [Kotlin] (0) 2021.02.23 프로그래머스 - 체육복[코틀린] (0) 2021.02.22 프로그래머스 - 도둑질 [자바] (0) 2021.02.14 프로그래머스 - 등굣길 [자바] (0) 2021.02.12