https://programmers.co.kr/learn/courses/30/lessons/76501
풀이:
def solution(absolutes, signs):
return sum(list(map(lambda x,y: x if y==True else -x ,absolutes,signs)))
다른 풀이:
def solution(absolutes, signs):
return sum(absolutes if sign else -absolutes for absolutes, sign in zip(absolutes, signs))
'Programming > Programmers' 카테고리의 다른 글
[프로그래머스] 폰캣몬 (Python) (0) | 2021.09.28 |
---|---|
[프로그래머스] 소수 만들기(Python) (0) | 2021.09.27 |
[프로그래머스] 숫자 문자열과 영단어(Python) (0) | 2021.09.27 |
[프로그래머스] 등굣길(Python) (0) | 2021.08.12 |
[프로그래머스] 2 x n 타일링(Python) (0) | 2021.08.12 |
댓글