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 |
'알고리즘' 카테고리의 다른 글
프로그래머스 오픈채팅방 - 2019 KAKAO BLIND RECRUITMENT (파이썬) (0) | 2020.09.27 |
---|---|
프로그래머스 가운데 글자 가져오기 (파이썬) (0) | 2020.09.25 |
프로그래머스 예산 (파이썬) (0) | 2020.09.23 |
프로그래머스 방금그곡 -2018 KAKAO BLIND RECRUITMENT (파이썬) (0) | 2020.09.22 |
프로그래머스 삼각 달팽이 (코틀린) (0) | 2020.09.17 |