Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Check Out My YouTube Channel

Check Out More Algorithms like this at FreeCodeCamp


Translate the provided string to pig latin.

Pig Latin takes the first consonant (or consonant cluster) of an English word, moves it to the end of the word and suffixes an "ay".

If a word begins with a vowel you just add "way" to the end.

Input strings are guaranteed to be English words in all lowercase.

Example

  • pigLatin("glove") should return "oveglay".
  • pigLatin("eight") should return "eightway".

Hints

  • split()
  • test()
  • join()
  • push()