Problem Solving/Programmers

【프로그래머스】 숫자 문자열과 영단어 (Kotlin)

까망사과 2023. 2. 3. 11:00

문제

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

풀이

Stringreplace 함수로 문자열 안의 각 영단어를 숫자로 바꾼다.

마지막으로 문자열을 Int 타입으로 변환하면 된다.

 

코드

 

GitHub - blacksg/ProblemSolving

Contribute to blacksg/ProblemSolving development by creating an account on GitHub.

github.com

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()
    }
}