나의 풀이
public class Solution
{
public string solution(string s)
{
string answer = "";
int temp = s.Length % 2 == 1 ? 1 : 2;
int length = (s.Length / 2) + (s.Length % 2);
answer = s.Substring(length - 1, temp);
return answer;
}
}
다른 사람의 풀이
세상은 넓고 고수는 많다..
'알고리즘' 카테고리의 다른 글
프로그래머스 C# 행렬의 덧셈 (0) | 2024.06.24 |
---|---|
프로그래머스 C# 문자열 다루기 기본 (0) | 2024.06.24 |
[프로그래머스] C# 제일 작은 수 제거하기 (0) | 2024.02.22 |
프로그래머스 핸드폰 가리기 (0) | 2024.02.20 |
프로그래머 음양 더하기 (0) | 2024.02.19 |