알고리즘

[프로그래머스][Swift] 문자열 다루기 기본

moving 2022. 6. 29. 17:20
728x90

func solution(_ s:String) -> Bool {
    
    if s.count == 4 || s.count == 6 {
        if Int(s) != nil {
            return true
        }
    }
    return false
}