IT_World
[프로그래머스/golang- Level 1] 가운데 글자 가져오기 본문
문제 설명
단어 s의 가운데 글자를 반환하는 함수, solution을 만들어 보세요. 단어의 길이가 짝수라면 가운데 두글자를 반환하면 됩니다.
재한사항
- s는 길이가 1 이상, 100이하인 스트링입니다.
입출력 예
s | return |
"abcde" | "c" |
"qwer" | "we" |
전체코드
func solution(s string) string {
var a string
length := len(s)
if length%2 != 0 {
a = s[length/2 : length/2+1]
} else {
a = s[length/2-1 : length/2+1]
}
return a
}
'Coding test > programmers - source' 카테고리의 다른 글
[golang] Leetcode 66. Plus One (0) | 2021.11.17 |
---|---|
[프로그래머스/golang- Level 1] 1주차_부족한 금액 계산하기 (0) | 2021.10.02 |
[프로그래머스/golang- Level 1] k번째 수 (0) | 2021.09.25 |
[프로그래머스/python- Level 1] 신규 아이디 추천 (0) | 2021.09.07 |
[프로그래머스/golang- Level 1] 두 정수 사이의 합 (0) | 2021.09.06 |
Comments