Algorithm 7 - [JS] Find the missing letter
Find the missing letter
Write a method that takes an array of consecutive (increasing) letters as input and that returns the missing letter in the array.
You will always get an valid array. And it will be always exactly one letter be missing. The length of the array will always be at least 2.
The array will always contain letters in only one case.Example :
['a','b','c','d','f'] -> 'e' ['O','Q','R','S'] -> 'P' ["a","b","c","d","f"] -> "e" ["O","Q","R","S"] -> "P"
(Use the English alphabet with 26 letters!)
📌 Needs ) 빠진 글자를 찾아서 리턴하라.
📁 Sol ) for 반복문과 if 조건문 사용
function findMissingLetter(array) {
let string = array.join("");
for (let i = 0; i < string.length; i++) {
if (string.charCodeAt(i + 1) - string.charCodeAt(i) != 1) {
return String.fromCharCode(string.charCodeAt(i) + 1);
}
}
}
💡 Other ways to solve ) 변수의 value값이 길어서 사용 X. 그러나 split과 slice, find, includes 사용했다는 점에서 고려해볼 수 있음.
let findMissingLetter = (array) => {
let alphabet = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'.split('');
let start = alphabet.indexOf(array[0]);
return alphabet.slice(start, start + array.length).find(el => !array.includes(el));
};
Author And Source
이 문제에 관하여(Algorithm 7 - [JS] Find the missing letter), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@threeplef/Algorithm-7-JS-Find-the-missing-letter저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)