본문 바로가기

알고리즘

프로그래머스 두 개 뽑아서 더하기 (코틀린)

1
2
3
4
5
6
7
8
9
10
11
12
13
class Solution {
    fun solution(numbers: IntArray): List<Int> {
        var answer: ArrayList<Int> = arrayListOf<Int>()
        for(i in numbers.indices) {
            for(j in numbers.indices) {
                if(i != j) {
                    answer.add(numbers[i] + numbers[j])
                }
            }
        }
        return answer.distinct().sorted()
    }
}
cs