반응형
https://programmers.co.kr/learn/courses/30/lessons/12948
글쓴이의 답
개인적인 풀이 임으로
이것보다 더 좋은 알고리즘은 많음...
이렇게도 풀이하는구나.. 공유하기 위해 올림...
#include <string>
#include <vector>
using namespace std;
string solution(string phone_number) {
string answer = "";
int check=phone_number.size() -4;
for(int i= 0; i < phone_number.size() ; i++){
if(i >= check){
answer += phone_number[i];
}
else{
answer += "*";
}
}
return answer;
}
꾸준히 하다보면 실력이 늘겠지..
반응형
'코딩테스트' 카테고리의 다른 글
[프로그래머스][C++] x만큼 간격이 있는 n개의 숫자 (0) | 2022.03.20 |
---|---|
[프로그래머스][C++] 행렬의 덧셈 (0) | 2022.03.20 |
[프로그래머스][C++] 하샤드 수 (0) | 2022.03.20 |
[프로그래머스][C] 평균 구하기 (0) | 2022.03.20 |
[프로그래머스][C++] 콜라츠 추측 (0) | 2022.03.20 |