Study/프로그래머스
[Kotlin/프로그래머스] 문자열 뒤의 n글자
colalove5562
2023. 6. 5. 19:33
정답
class Solution {
fun solution(my_string: String, n: Int): String {
return my_string.substring(my_string.length-n, my_string.length)
}
}