728x90
https://programmers.co.kr/learn/courses/30/lessons/76501
단순한 파이썬 언어 친해지기용
1
2
3
4
5
6
7
8
|
def solution(absolutes, signs):
answer = 0
for a,s in zip(absolutes,signs):
if s==False:
a*= -1
answer +=a
return answer
|
cs |
728x90
'PS > 프로그래머스' 카테고리의 다른 글
[프로그래머스 LV 2] [1차] 뉴스 클러스터링 C++/파이썬 (0) | 2021.05.19 |
---|---|
[프로그래머스 LV 2 ] 오픈채팅방 C++/python (0) | 2021.05.19 |
[프로그래머스 LV 2] 게임 맵 최단거리 C++ (0) | 2021.05.18 |
[프로그래머스 LV 2] 짝지어 제거하기 C++ (0) | 2021.05.18 |
[프로그래머스 LV 2] 문자열 압축 C++, js (0) | 2021.04.08 |