func solution(_ s:String) -> String {
if s.count == 1 { return s }
let Index1 = s.index(s.startIndex, offsetBy: s.count/2-1)
let Index2 = s.index(s.startIndex, offsetBy: s.count/2)
return s.count % 2 != 0 ? String(s[Index2]) : String(s[Index1...Index2])
}
'Algorithm > programmers' 카테고리의 다른 글
프로그래머스 - 귤 고르기 (0) | 2024.10.31 |
---|---|
프로그래머스 - 연속 부분 수열 합의 개수, feat. Set (0) | 2024.10.30 |
프로그래머스 - 영어 끝말잇기 (0) | 2024.10.29 |
프로그래머스 - 멀리 뛰기 feat. DP (0) | 2024.10.27 |
프로그래머스 - 점프와 순간 이동 feat. 최소 연산횟수 (0) | 2024.10.20 |