Notice
Recent Posts
Recent Comments
Link
S E P H ' S
[Python] 음양 더하기 본문
def solution(absolutes, signs):
answer = 0
for i in range(len(absolutes)):
if signs[i]:
answer += absolutes[i]
elif signs[i] == False:
answer -= absolutes[i]
return answer
'Algorithm > Programmers' 카테고리의 다른 글
[Python] 폰켓몬 (0) | 2021.07.07 |
---|---|
[Python] 약수의 개수와 덧셈 (0) | 2021.07.06 |
[Python] 예산 (0) | 2021.07.06 |
[Python] 신규 아이디 추천 (0) | 2021.07.06 |
[Python] 체육복 (0) | 2021.07.06 |