Post

문자열을 정수로 변환하기

https://school.programmers.co.kr/learn/courses/30/lessons/181848

📔 문제 설명

숫자로만 이루어진 문자열 n_str이 주어질 때, n_str을 정수로 변환하여 return하도록 solution 함수를 완성해주세요.

💡 입출력 예

n_strresult
“10”10
“8542”8542

💻내가 작성한 코드

1
2
3
function solution(n_str) {
  return n_str * 1;
}
This post is licensed under CC BY 4.0 by the author.