반응형
프로그래머스
코딩 기초 트레이닝
def solution(binomial):
a, op, b = binomial.split()
if op == '+':
answer = int(a)+int(b)
elif op =='-':
answer = int(a)-int(b)
elif op == '*':
answer = int(a)*int(b)
return answer
def solution(binomial):
return eval(binomial)
반응형
'DS > Coding Test' 카테고리의 다른 글
[Python][Greedy][BFS] 조이스틱 (0) | 2023.05.19 |
---|---|
[Python] 튜플 (0) | 2023.05.19 |
[Python] 수식 최대화 (0) | 2023.05.19 |
[Python][정렬] H-Index (0) | 2023.05.19 |
[Python] 5명씩 (0) | 2023.05.19 |