728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/12922
using System.Text;
public class Solution {
public string solution(int n) {
StringBuilder answer = new StringBuilder();
for (int i = -1; ++i < n;)
answer.Append(i % 2 == 0 ? "수" : "박");
return answer.ToString();
}
}
StringBuilder까지 쓸 필요는 없는 문제가 맞긴 하지만 이런 게 for문이 100000000000000번 돌리면서 string += 을 해준다 생각하면 수행 시간이 엄청 느려질 것 대비 대비 늘
반응형
'프로그래머스_C# > Level_1' 카테고리의 다른 글
[프로그래머스 C#] 서울에서 김서방 찾기 (0) | 2021.08.30 |
---|---|
[프로그래머스 C#] 문자열을 정수로 바꾸기 (0) | 2021.08.29 |
[프로그래머스 C#] 시저 암호 (0) | 2021.08.21 |
[프로그래머스 C#] 약수의 합 (0) | 2021.08.20 |
[프로그래머스 C#] 이상한 문자 만들기 (0) | 2021.08.19 |