import Foundation
func solution(_ absolutes:[Int], _ signs:[Bool]) -> Int {
return Array(0..<absolutes.count).map { signs[$0] ? absolutes[$0] : -absolutes[$0] }.reduce(0, +)
}
'Algorithm > programmers' 카테고리의 다른 글
프로그래머스 - 내적 (0) | 2024.09.11 |
---|---|
프로그래머스 - 2021 카카오 블라인드 신규 아이디 추천 (정규 표현식) (0) | 2024.09.11 |
프로그래머스 - 로또의 최고 순위와 최저 순위 (0) | 2024.09.11 |
프로그래머스 - 바탕화면 정리 (0) | 2024.09.10 |
프로그래머스 - 공원 산책 (0) | 2024.09.09 |