-
[프로그래머스] 음양 더하기 (by Python)Programming/Algorithm 2021. 5. 16. 03:39
문제
https://programmers.co.kr/learn/courses/30/lessons/76501
풀이
def solution(absolutes, signs): return sum(absolutes[i] if signs[i] else -absolutes[i] for i in range(len(absolutes)))
두 리스드의 값에 따라 합을 계산하는 간단한 구현 문제.
list comprehension을 이용하여 한 줄로 끝낼 수 있었다.
'Programming > Algorithm' 카테고리의 다른 글
[프로그래머스] 멀쩡한 사각형 (by Python) (0) 2021.05.16 [프로그래머스] 폰켓몬 (by Python) (0) 2021.05.16 [프로그래머스] 더 맵게 (by Python) (0) 2021.05.16 [백준] 17086번 아기 상어 2 (by Python) (0) 2021.04.11 [백준] 1303번 전쟁 - 전투 (by Python) (0) 2021.04.11