[프로그래머스] (lv1) 가운데 글자 가져오기

[프로그래머스] (lv1) 가운데 글자 가져오기

가운데 글자 가져오기

JavaScript, Python


문제 설명

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

제한사항

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

입출력 예

s return
“abcde” “c”
“qwer” “we”


풀이


javascript

1
2
3
function solution(s) {
return s.substr(Math.ceil(s.length/2)-1,s.length % 2 ===0?2:1)
}


python

1
2
def solution(s):
return s[int(len(s)/2 - 0.5) : int(len(s)/2)+1]


설명


배열의 인덱스 관리 능력을 묻는 문제다.

출처: 프로그래머스 코딩 테스트 연습, https://programmers.co.kr/learn/challenges


[프로그래머스] (lv1) 가운데 글자 가져오기

https://sklubmk.github.io/2021/08/04/7c673b240a2d/

Author

Jinki Kim

Posted on

2021-08-04

Updated on

2021-08-05

Licensed under

댓글