문제 설명
프로그래머스 모바일은 개인정보 보호를 위해 고지서를 보낼 때 고객들의 전화번호의 일부를 가립니다.
전화번호가 문자열 phone_number로 주어졌을 때, 전화번호의 뒷 4자리를 제외한 나머지 숫자를 전부 *으로 가린 문자열을 리턴하는 함수, solution을 완성해주세요.
제한조건
s는 길이 4 이상, 20이하인 문자열입니다.
입출력 예
phone_number | return |
'01033334444' | '*******4444' |
'027778888' | '*****8888' |
나의 풀이
def solution(phone_number):
for i in range(len(phone_number)-4):
phone_number=phone_number.replace(phone_number[i],'*',1)
return phone_number
1. phone_number에서 마지막 4자리를 제외한 숫자들을 *로 바꿔주고 리턴합니다.
다른 사람의 풀이
def solution(phone_number):
return "*"*(len(phone_number)-4) + phone_number[-4:]
phone_number 전체 길이에서 4개를 빼고 * 을 만들고 phone_number 마지막 4자리를 리턴합니다.
프로그래머스 '핸드폰 번호 가리기' : https://programmers.co.kr/learn/courses/30/lessons/12948
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[프로그래머스 Level 1] x만큼 간격이 있는 n개의 숫자 - 파이썬(Python) (0) | 2020.06.08 |
---|---|
[프로그래머스 Level 1] 행렬의 덧셈 - 파이썬(Python) (0) | 2020.06.08 |
[프로그래머스 Level 1] 하샤드 수 - 파이썬(Python) (0) | 2020.06.07 |
[프로그래머스 Level 1] 평균 구하기 - 파이썬(Python) (0) | 2020.06.07 |
[프로그래머스 Level 1] 콜라츠 추측 - 파이썬(Python) (0) | 2020.06.07 |