728x90
https://school.programmers.co.kr/learn/courses/30/lessons/12948
소스코드1
public class Solution
{
public string solution(string phone_number)
{
string answer = "";
char[] array = phone_number.ToCharArray();
for (int i = 0; i < phone_number.Length - 4; i++)
{
array[i] = '*';
}
return new string(array);
}
}
소스코드2
public class Solution
{
public string solution(string phone_number)
{
string answer = phone_number.Substring(phone_number.Length - 4);
answer = answer.PadLeft(phone_number.Length, '*');
return answer;
}
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.1 제일 작은 수 제거하기 C# (링큐) (0) | 2023.06.19 |
---|---|
[프로그래머스]Lv.1 평균 구하기 C# (Average) (0) | 2023.06.16 |
[프로그래머스]Lv.1 x만큼 간격이 있는 n개의 숫자 C#(반복간격공식) (0) | 2023.06.15 |
[프로그래머스]Lv.1 직사각형 별찍기 C# (0) | 2023.06.15 |
[프로그래머스]Lv.1 소수 만들기 C# (소수인지 확인) (0) | 2023.06.15 |