문제
풀이
String
의 replace
함수로 문자열 안의 각 영단어를 숫자로 바꾼다.
마지막으로 문자열을 Int
타입으로 변환하면 된다.
코드
class Solution {
fun solution(s: String): Int {
return s.replace("zero", "0")
.replace("one", "1")
.replace("two", "2")
.replace("three", "3")
.replace("four", "4")
.replace("five", "5")
.replace("six", "6")
.replace("seven", "7")
.replace("eight", "8")
.replace("nine", "9")
.toInt()
}
}
'Problem Solving > Programmers' 카테고리의 다른 글
【프로그래머스】 신고 결과 받기 (Kotlin) (0) | 2023.02.03 |
---|---|
【프로그래머스】 이모티콘 할인행사 (Kotlin) (0) | 2023.01.29 |
【프로그래머스】 택배 배달과 수거하기 (Kotlin) (0) | 2023.01.27 |
【프로그래머스】 멀쩡한 사각형 (Kotlin) (0) | 2023.01.21 |
【프로그래머스】 배달 (Kotlin) (0) | 2023.01.19 |