📝 문제풀이/프로그래머스
[Level 1] 가운데 글자 가져오기
NoHack
2022. 2. 27. 06:16
728x90
문제 설명
단어 s의 가운데 글자를 반환하는 함수, solution을 만들어 보세요. 단어의 길이가 짝수라면 가운데 두글자를 반환하면 됩니다.
제한 조건
- s는 길이가 1 이상, 100 이하인 문자열입니다.
문제 풀이
const solution = (s) => {
const len = s.length;
if (len % 2) return s[Math.floor(len / 2)];
else return s.slice(Math.floor(len / 2) - 1, Math.floor(len / 2) + 1);
};
const inputs = ['abcde', 'qwer'];
inputs.forEach((input) => console.log(solution(input)));