새소식

인기 검색어

프로그래머스/Lv.0

[Swift] 옹알이 (1)

  • -
import Foundation

func solution(_ babbling:[String]) -> Int {
    
    var result = [String]()
    
    for babble in babbling {
        var element = babble
        element = element.replacingOccurrences(of: "aya", with: "1")
        element = element.replacingOccurrences(of: "ye", with: "2")
        element = element.replacingOccurrences(of: "woo", with: "3")
        element = element.replacingOccurrences(of: "ma", with: "4")
        result.append(element)
    }
    
    return result.compactMap {Int($0)}.count
}

'프로그래머스 > Lv.0' 카테고리의 다른 글

[Swift] 외계행성의 나이  (0) 2023.01.05
[Swift] 외계어 사전  (0) 2023.01.05
[Swift] 옷가게 할인 받기  (0) 2023.01.05
[Swift] 영어가 싫어요  (0) 2022.12.26
[Swift] 연속된 수의 합  (0) 2022.12.26
Contents

포스팅 주소를 복사했습니다

이 글이 도움이 되었다면 공감 부탁드립니다.