본문 바로가기
Algorithm/BFS, DFS

[프로그래머스] 문자열을 정수로 바꾸기

by 등촌동 꼬북이 2020. 8. 28.

정말 간단한 문제..

 

형 변환만 해주면 된다..

 

def solution(s):
    return int(s)

댓글