코딩테스트 연습 > 문자열을 정수로 바꾸기
입력된 string 을 int 로 변환하여 반환한다.
def solution(s): return int(s)
fun solution(s: String): Int = s.toInt()
kotlin 과 python 에서 +, - 를 부호로 인식한다.
kotlin
python