[프로그래머스] 가운데 글자 가져오기
·
알고리즘
나의 풀이 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; } } 다른 사람의 풀이 세상은 넓고 고수는 많다..