-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathday-141.cpp
74 lines (59 loc) · 2.2 KB
/
day-141.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*
Goat Latin
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.
*/
// Simple O(N) solution. Doing string manipulation
class Solution {
public:
bool isVowel(char ch) {
if (ch >= 'A' && ch <= 'Z') ch += 32;
if (ch == 'a' || ch == 'e' || ch == 'i' || ch == 'o' || ch == 'u')
return true;
return false;
}
string toGoatLatin(string S) {
const string POSTFIX = "ma";
const char SPACE = ' ';
const string EMPTY_STRING = "";
int N = S.size();
string result = EMPTY_STRING;
string letterA = EMPTY_STRING;
for (int idx = 0; idx < N; idx++) {
string current = EMPTY_STRING;
bool isFirstChar = true;
char ifConsonant = '@';
while (S[idx] != SPACE) {
if (isFirstChar) {
isFirstChar = false;
if (!isVowel(S[idx])) {
ifConsonant = S[idx];
idx += 1;
if (idx == N) break;
continue;
}
}
current += S[idx];
idx += 1;
if (idx == N) break;
}
letterA += 'a';
if (ifConsonant != '@') current += ifConsonant;
result += current + POSTFIX + letterA;
if (idx != N) result += SPACE;
}
return result;
}
};