Conatuseus   5년 전

kotlin

오답 코드 :

val store= readLine()!!.split(' ').map { it.toInt() }.toIntArray()

정답 코드 :

val store= readLine()!!.trim().split(' ').map { it.toInt() }.toIntArray()

startlink   5년 전

재채점했습니다.

댓글을 작성하려면 로그인해야 합니다.