Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 855 Bytes

phone_number.md

File metadata and controls

24 lines (16 loc) · 855 Bytes

전화번호 가리기-프로그래머스

  • References : https://www.acmicpc.net/problem/2562

  • 프로그래머스 모바일은 개인정보 보호를 위해 고지서를 보낼 때 고객들의 전화번호의 일부를 가립니다.

  • 전화번호가 문자열 phone_number로 주어졌을 때, 전화번호의 뒷 4자리를 제외한 나머지 숫자를 전부 * 으로 가린 문자열을 리턴하는 함수, solution을 완성해주세요.

Restrictions:

  • s는 길이 4 이상, 20이하인 문자열입니다.

Test Code:

def solution(s: str) -> ???:
    # input your code
    return ???

if __name__ == '__main__':
    sample_list = ["01033334444", "027778888"]
    # input your code

Solution : 바로가기