문제 설명
숫자로만 이루어진 문자열 n_str이 주어질 때, n_str을 정수로 변환하여 return하도록 solution 함수를 완성해주세요.
입출력
코드 풀이
def solution(n_str): return int(n_str)
출처: 프로그래머스 코딩테스트 연습