728x90
반응형
#python
점수를 받은 최고점수이다.
def solution(my_string):
answer = 0
tempList = []
a = list((my_string.split(" ")))
print(a)
if a[0].isdigit() == True:
tempList.append(int(a[0]))
for i in range(1, len(a)):
if a[i].isdigit() == True:
if a[i-1] == '-':
tempList.append(int(a[i])*(-1))
else :
tempList.append(int(a[i]))
answer = sum(tempList)
return answer
728x90
반응형
'Job Wanted > 코테 - 프로그래머스' 카테고리의 다른 글
[프로그래머스] 코딩테스트 연습 > 코딩테스트 입문 > 소인수분해 (0) | 2022.11.22 |
---|---|
[프로그래머스] 코딩테스트 연습 > 연습문제 > 콜라츠 추측 (0) | 2022.11.22 |
[프로그래머스] 코딩테스트 입문 > 직사각형 넓이 구하기 (0) | 2022.11.15 |
[프로그래머스] Summer/Winter Coding(~2018) > 소수 만들기 (0) | 2022.11.14 |
[프로그래머스] 위클리 챌린지 > 부족한 금액 계산하기 (0) | 2022.11.11 |