import Foundation
func solution(_ numbers:[Int]) -> [Int] {
var result: Set<Int> = []
for i in 0..<numbers.count {
for j in 0..<numbers.count {
if i != j {
result.insert(numbers[i]+numbers[j])
}
}
}
return result.sorted()
}
'Algorithm > programmers' 카테고리의 다른 글
프로그래머스 - 성격 유형 검사하기 (카카오 인턴쉽) (0) | 2024.09.11 |
---|---|
프로그래머스 - 키패드 누르기 (2022 카카오 인턴) (2) | 2024.09.11 |
프로그래머스 - 3진법 뒤집기 (0) | 2024.09.11 |
프로그래머스 - 내적 (0) | 2024.09.11 |
프로그래머스 - 2021 카카오 블라인드 신규 아이디 추천 (정규 표현식) (0) | 2024.09.11 |