반응형
💡 프로그래머스 모바일은 개인정보 보호를 위해 고지서를 보낼 때 고객들의 전화번호의 일부를 가립니다.
전화번호가 문자열 phone_number로 주어졌을 때, 전화번호의 뒷 4자리를 제외한 나머지 숫자를 전부 *으로 가린 문자열을 리턴하는 함수, solution을 완성해주세요.
‼️ s는 길이 4 이상, 20이하인 문자열입니다.
🖥 나의 풀이
public class Solution {
public string solution(string phone_number) {
string answer = "";
string temp = "";
// 뒤에서부터 4자리 자르기
temp = phone_number.Substring(phone_number.Length-4);
for (int i = 0; i < phone_number.Length-4; ++i) {
answer += "*";
}
answer += temp;
return answer;
}
}
🖥 다른 풀이
public class Solution {
public string solution(string phone_number) {
string answer = phone_number.Substring(phone_number.Length - 4, 4);
for(int i = 0; i < phone_number.Length - 4; i++)
{
answer = answer.Insert(0, "*");
}
return answer;
}
}
🗒 출처: 프로그래머스
반응형
'코딩테스트 연습 > C#' 카테고리의 다른 글
[C#/알고리즘] 하샤드 수 (0) | 2021.06.02 |
---|---|
[C#/알고리즘] 평균 구하기 (0) | 2021.06.02 |
[C#/알고리즘] x만큼 간격이 있는 n개의 숫자 (0) | 2021.06.01 |
[C#/알고리즘] K번째 수 찾기 (0) | 2021.06.01 |
[C#/알고리즘] 나누어 떨어지는 숫자 배열 (0) | 2021.05.23 |