forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_824.java
39 lines (36 loc) · 1.32 KB
/
_824.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.fishercoder.solutions;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;
public class _824 {
public static class Solution1 {
public String toGoatLatin(String S) {
StringBuilder sb = new StringBuilder();
Set<Character> vowels =
new HashSet(Arrays.asList('a', 'e', 'i', 'o', 'u', 'A', 'E', 'I', 'O', 'U'));
String[] words = S.split(" ");
for (int i = 0; i < words.length; i++) {
if (vowels.contains(words[i].charAt(0))) {
String newWord = words[i] + "ma";
int j = i + 1;
while (j-- > 0) {
newWord += 'a';
}
sb.append(newWord);
sb.append(" ");
} else {
StringBuilder subSb = new StringBuilder(words[i].substring(1));
subSb.append(words[i].charAt(0));
subSb.append("ma");
int j = i + 1;
while (j-- > 0) {
subSb.append("a");
}
sb.append(subSb.toString());
sb.append(" ");
}
}
return sb.substring(0, sb.length() - 1);
}
}
}