-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathGoat_Latin.cpp
41 lines (41 loc) · 1.06 KB
/
Goat_Latin.cpp
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
40
41
class Solution {
bool isVowel(char ch) {
switch(tolower(ch)) {
case 'a':
case 'e':
case 'i':
case 'o':
case 'u':
return true;
default:
return false;
}
}
public:
string toGoatLatin(string S) {
if(S.empty()) return S;
int start = 0;
string result;
string suffix = "a";
while(start < S.length()) {
int end = S.find(' ', start);
if(end == string::npos) {
end = (int)S.length();
}
string word = S.substr(start, end - start);
if(isVowel(word[0])) {
word += "ma";
} else {
word += word[0];
word += "ma";
word = word.substr(1);
}
word += suffix;
result += word;
result += ' ';
suffix += 'a';
start = end + 1;
}
return result.substr(0, result.length() - 1); // or return result.erase(result.length() - 1, 1);
}
};