You are going to be given a word. Your job is to return the middle character of the word. If the word's length is odd, return the middle character. If the word's length is even, return the middle 2 characters.
Examples:
Kata.getMiddle("test") should return "es"
Kata.getMiddle("testing") should return "t"
Kata.getMiddle("middle") should return "dd"
Kata.getMiddle("A") should return "A"
Input
A word (string) of length 0 < str < 1000
Output
The middle character(s) of the word represented as a string.
'Computer science > 알고리즘' 카테고리의 다른 글
[자바스크립트로 구현한 알고리즘] Vowel Count (0) | 2016.09.19 |
---|---|
[자바스크립트로 구현한 알고리즘] Mumbling (0) | 2016.09.19 |
[자바스크립트로 구현한 알고리즘] Highest and Lowest (0) | 2016.09.18 |
[자바스크립트로 구현한 알고리즘] Complementary DNA (0) | 2016.09.17 |
[자바스크립트로 구현한 알고리즘] Stringy Strings (0) | 2016.09.17 |
이 포스팅은 쿠팡파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.