본문 바로가기

# 02/Swift - CTP

[Swift] 코딩테스트 연습! Lv0. 영어가 싫어요

반응형
/* 영어가 싫어요

 - 영어가 싫은 머쓱이는 영어로 표기되어있는 숫자를 수로 바꾸려고 합니다. 문자열 numbers가 매개변수로 주어질 때, numbers를 정수로 바꿔 return 하도록 solution 함수를 완성해 주세요.
*/
func solution21(_ numbers:String) -> Int64 {
       Int64(numbers.replacingOccurrences(of: "zero", with: "0").replacingOccurrences(of: "one", with: "1").replacingOccurrences(of: "two", with: "2").replacingOccurrences(of: "three", with: "3").replacingOccurrences(of: "four", with: "4").replacingOccurrences(of: "five", with: "5").replacingOccurrences(of: "six", with: "6").replacingOccurrences(of: "seven", with: "7").replacingOccurrences(of: "eight", with: "8").replacingOccurrences(of: "nine", with: "9") ) ?? 0
}
반응형