코딩테스트1 2020. 10. 13 "토마토" 나 "기러기"처럼 거꾸로 읽어도 똑같은 단어를 "팰린드롬(palindrome)"이라 부른다. 팰린드롬(palindrome)과 아닌 것을 구분하여 true와 false로 출력한다면 다음과 같이 표현할 수 있다. function palindrome(word) { for(let i = 0; i < Math.floor(word.length / 2); i++) { let left = word[i]; let right = word[word.length - 1 - i]; if(left !== right) { return false; } } return true; } console.log(palindrome("기러기")); console.log(palindrome("토마토")); console.log(pal.. 2020. 10. 13. 이전 1 다음