https://leetcode.com/problems/goat-latin/description/
A sentence
S
is given, composed of words separated by spaces. Each word consists of lowercase and uppercase letters only.
We would like to convert the sentence to "Goat Latin" (a made-up language similar to Pig Latin.)
The rules of Goat Latin are as follows:
- If a word begins with a vowel (a, e, i, o, or u), append
"ma"
to the end of the word.
For example, the word 'apple' becomes 'applema'.
- If a word begins with a consonant (i.e. not a vowel), remove the first letter and append it to the end, then add
"ma"
.
For example, the word"goat"
becomes"oatgma"
.
- Add one letter
'a'
to the end of each word per its word index in the sentence, starting with 1.
For example, the first word gets"a"
added to the end, the second word gets"aa"
added to the end and so on.
Return the final sentence representing the conversion from
S
to Goat Latin.
Example 1:
Input: "I speak Goat Latin" Output: "Imaa peaksmaaa oatGmaaaa atinLmaaaaa"
Example 2:
Input: "The quick brown fox jumped over the lazy dog" Output: "heTmaa uickqmaaa rownbmaaaa oxfmaaaaa umpedjmaaaaaa overmaaaaaaa hetmaaaaaaaa azylmaaaaaaaaa ogdmaaaaaaaaaa"
- Time Complexity: , where is the length of
S
. This represents the complexity of rotating the word and adding extra"a"
characters. - Space Complexity: , the space added to the answer by adding extra
"a"
characters.
Set<Character> vowel = new HashSet();
for (char c: new char[]{'a', 'e', 'i', 'o', 'u', 'A', 'E', 'I', 'O', 'U'})
vowel.add(c);
int t = 1;
StringBuilder ans = new StringBuilder();
for (String word: S.split(" ")) {
char first = word.charAt(0);
if (vowel.contains(first)) {
ans.append(word);
} else {
ans.append(word.substring(1));
ans.append(word.substring(0, 1));
}
ans.append("ma");
for (int i = 0; i < t; i++)
ans.append("a");
t++;
ans.append(" ");
}
ans.deleteCharAt(ans.length() - 1);
return ans.toString();
}
private static final Set<Character> vowels = new HashSet<>(Arrays.asList(new Character[] { 'a', 'e', 'i', 'o', 'u' }));
public String toGoatLatin(String str) {
String[] array = str.split("\\s+");
StringBuilder sb = new StringBuilder(), extraAs = new StringBuilder();
for (int i = 0; i < array.length; i++) {
extraAs.append("a");
String word = array[i];
if (vowels.contains(Character.toLowerCase(word.charAt(0)))) {
sb.append(word);
} else {
sb.append(word.substring(1)).append(word.charAt(0));
}
sb.append("ma").append(extraAs);
if (i != array.length - 1) {
sb.append(" ");
}
}
return sb.toString();
}