Posts [알고리즘] 프로그래머스 > 가운데 글자 가져오기
Post
Cancel

[알고리즘] 프로그래머스 > 가운데 글자 가져오기

문제 설명

단어 s의 가운데 글자를 반환하는 함수, solution을 만들어 보세요. 단어의 길이가 짝수라면 가운데 두글자를 반환하면 됩니다.

제한사항

  • s는 길이가 1 이상, 100이하인 스트링입니다.

입출력 예

  • 스크린샷 2020-01-04 오후 1.15.04

소스 코드

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class PGLevel1Q6 {
    public String solution(String s) {
        String answer = "";
        if (s.length() <= 1) {
            return s;
        }
        int midIndex = s.length() / 2;
        // 짝수인 경우
        if (s.length() % 2 == 0) {
            answer = s.substring(midIndex - 1, midIndex + 1);
        } else { // 홀수인 경우
            answer = s.substring(midIndex, midIndex + 1);
        }
        return answer;
    }
}
This post is licensed under CC BY 4.0 by the author.

[알고리즘] 프로그래머스 > 2016년

[알고리즘] 프로그래머스 > 같은 숫자는 싫어

Comments powered by Disqus.