programmers
[programmers lv.0] 숫자 비교하기
sohodor
2023. 7. 21. 23:18
def solution(num1, num2):
answer = 0
if num1 == num2:
return 1
else:
return -1