728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/12948
using System.Text;
public class Solution {
public string solution(string phone_number) {
StringBuilder answer = new StringBuilder();
for (int i = 0; i < phone_number.Length; i++)
{
char num = i < phone_number.Length - 4 ? '*' : phone_number[i];
answer.Append(num);
}
return answer.ToString();
}
}
StringBuilder의 경우 여기선 굳이 사용하지 않아도 되지만 몇만 번 이상씩 Text를 더해야 할 경우 무조건 적으로 사용해야 한다. StringBuilder와 Text += Text에 대해선 구글링에 정말 수많은 자료가!
쉽고 간단한 문제이지만 더 깊게 생각해서 풀기
반응형
'프로그래머스_C# > Level_1' 카테고리의 다른 글
[프로그래머스 C#] 평균 구하기 (0) | 2021.06.27 |
---|---|
[프로그래머스 C#] 하샤드 수 (0) | 2021.06.18 |
[프로그래머스 C#] x만큼 간격이 있는 n개의 숫자 (0) | 2021.05.29 |
[프로그래머스 C#] 행렬의 덧셈 (0) | 2021.05.23 |
[프로그래머스 C#] 직사각형 별찍기 (0) | 2021.05.16 |