Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 314 Bytes

Simple Pig Latin.md

File metadata and controls

10 lines (7 loc) · 314 Bytes

Move the first letter of each word to the end of it, then add "ay" to the end of the word. Leave punctuation marks untouched.

Examples

pigIt('Pig latin is cool'); // igPay atinlay siay oolcay
pigIt('Hello world !');     // elloHay orldWay !

solution