반응형
2022.07.29 - [Coding Test/Python] - [프로그래머스] 음양 더하기 Python3 code
2022.07.29 - [Coding Test/Python] - [프로그래머스] 음양 더하기 C++ code
저번 python과 C++에 이어
이번엔 Go lang으로 풀이해봤다.
문제
Code
func solution(absolutes []int, signs []bool) int {
answer := 0
for i, value := range absolutes {
if signs[i] {
answer += value
} else {
answer -= value
}
}
return answer
}
반응형
'Coding Test > Go' 카테고리의 다른 글
[프로그래머스] 체육복 Go Code (0) | 2022.08.10 |
---|---|
[프로그래머스] 없는 숫자 더하기 Go Code (0) | 2022.08.08 |
[프로그래머스] 소수 만들기 Go Code (0) | 2022.08.04 |
[프로그래머스] 내적 Go Code (0) | 2022.07.29 |
[프로그래머스] 신고 결과 받기 Go Code (0) | 2022.07.18 |
댓글