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

728x90

문제


이해

toInt


접근

  1. 코틀린 언어 자체의 형변환 사용

풀이

class Solution {
    fun solution(s: String): Int = s.toInt()
}
728x90

댓글

Designed by JB FACTORY