Posts [알고리즘] 프로그래머스 - 핸드폰 번호 가리기
Post
Cancel

[알고리즘] 프로그래머스 - 핸드폰 번호 가리기


문제

핸드폰 번호 가리기


접근

전체 길이 - 4만큼 별이 있어야 하고, 그 이후 자리를 이어 붙이면 된다.


코드

  • 파이썬 코드
1
2
3
4
5
def solution(phone_number):
    starCnt = len(phone_number) - 4
    answer = '*' * starCnt
    answer += str(phone_number[starCnt:])
    return answer
  • C++ 코드
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <string>

using namespace std;

string solution(string phone_number) {
    string answer = "";
    int len = phone_number.size() - 4;
    for(int i = 0; i<len;i++){
        answer += "*";
    }
    answer+=phone_number.substr(len);
    return answer;
}


This post is licensed under CC BY 4.0 by the author.

[알고리즘] 프로그래머스 - 약수의 합

[알고리즘] 프로그래머스 - 정수 내림차순으로 배치하기