[프로그래머스] 두 개 뽑아서 더하기(Kotlin)

0

프로그래머스

목록 보기
86/128
post-thumbnail

[프로그래머스] 두 개 뽑아서 더하기(Kotlin)

풀이

class Solution {
    fun solution(numbers: IntArray): IntArray {
        var answerSet = mutableSetOf<Int>()
        for(i in 0 until numbers.size){
            for(j in i+1 until numbers.size){
                val a = numbers[i]+numbers[j]
                answerSet.add(a)
            }
        }
        //.toList().sorted(): Set을 List로 형변환 후 정렬
        //.toIntArray(): 반환형인 IntArray로 형변환
       var answer = answerSet.toList().sorted().toIntArray()
       return answer
    }
}
profile
Be able to be vulnerable, in search of truth

0개의 댓글