Some problem solving programming challenges, i have solved. Not all are here, but started adding them slowly.
This project is maintained by chankruze
You have two friends who are speaking Pig Latin to each other! Pig Latin is the same words in the same order except that you take the first letter of each word and put it on the end, then you add ‘ay’ to the end of that. (“road” = “oadray”)
Your task is to take a sentence in English and turn it into the same sentence in Pig Latin!
A string of the sentence in English that you need to translate into Pig Latin. (no punctuation or capitalization)
A string of the same sentence in Pig Latin.
"nevermind youve got them"
"evermindnay ouveyay otgay hemtay"
The output should be the original sentence with each word changed so that they first letter is at the end and then ay is added after that.
Language | Solution |
---|---|
C | not available |
CPP | not available |
C# | not available |
Python | available |
Java | not available |
Ruby | not available |
Swift | not available |