728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/12951#
using System.Text;
public class Solution {
public string solution(string s) {
StringBuilder answer = new StringBuilder();
string[] _splitS = s.ToLower().Split(new char[]{' '});
for (int i = -1; ++i < _splitS.Length;)
{
if (_splitS[i] != "")
{
string first = _splitS[i].Substring(0, 1).ToUpper();
if (_splitS[i].Length > 1)
answer.Append(first + _splitS[i].Substring(1) + " ");
else
answer.Append(first + " ");
}
else
answer.Append(" ");
}
answer.Remove(answer.Length - 1, 1);
return answer.ToString();
}
}
문제가 많이 이상하고 별로..
14 ~ 17 line의 조건문의 경우
사실 answer.Append(first + _splitS[i].Substring(1) + " "); 만 써도 되는데 이게 좀 그렇긴 한데 말이지..
반응형
'프로그래머스_C# > Level_2' 카테고리의 다른 글
[프로그래머스 C#] 최댓값과 최솟값 (0) | 2021.10.29 |
---|---|
[프로그래머스 C#] 최솟값 만들기 (0) | 2021.10.28 |
[프로그래머스 C#] 피보나치 수 (0) | 2021.10.27 |
[프로그래머스 C#] 행렬의 곱셈 (0) | 2021.10.26 |
[프로그래머스 C#] N개의 최소공배수 (0) | 2021.10.22 |