Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

Check Out My YouTube Channel

Check Out More Algorithms like this at FreeCodeCamp


Find the missing letter in the passed letter range and return it.

If all letters are present in the range, return undefined.

Example

  • missingLetters("abce") should return "d".
  • missingLetters("abcdefghjklmno") should return "i".
  • missingLetters("abcdefghijklmnopqrstuvwxyz") should return undefined.

Hints

  • split()