핸드폰 번호 가리기 (Lv1. Swift)
Updated:
핸드폰 번호 가리기 (Lv1. Swift)
🔍 문제
프로그래머스 모바일은 개인정보 보호를 위해 고지서를 보낼 때 고객들의 전화번호의 일부를 가립니다.
전화번호가 문자열 phone_number로 주어졌을 때, 전화번호의 뒷 4자리를 제외한 나머지 숫자를 전부 *
으로 가린 문자열을 리턴하는 함수, solution을 완성해주세요.
🔶 제한사항
- phone_number는 길이 4 이상, 20이하인 문자열입니다.
🔹 입출력 예
📌 풀이
-
마지막 숫자 4개를 제외하고 ‘_’ 를 출력하고
(String(repeating: "_", count: phone_number.count - 4))
-
마지막 숫자 4개만 그대로 출력되게 한다
(.suffix(4))
repeating을 통해 string을 초기화 해주는 방법과 .suffix를 이용하면 한줄로 구현할 수 있다.
func solution(_ phone_number:String) -> String {
return String(repeating: "*", count: phone_number.count - 4) + phone_number.suffix(4)
}
print(solution("01033334444")) // *******4444
Reference
프로그래머스 - https://programmers.co.kr/learn/courses/30/lessons/12948
Leave a comment