-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsolution.cpp
44 lines (43 loc) · 1.09 KB
/
solution.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
/**
* 550 / 550 test cases passed.
* Runtime: 0 ms
* Memory Usage: 6 MB
*/
class Solution {
public:
bool detectCapitalUse(string word) {
int type = word[0] >= 'a' ? 0 : 1;
if (type && word.size() > 1 && word[1] >= 'a') type = 0;
if (type) {
for (int i = 1; i < word.size(); i++) {
if (word[i] >= 'a') return false;
}
} else {
for (int i = 1; i < word.size(); i++) {
if (word[i] < 'a') return false;
}
}
return true;
}
};
/**
* 550 / 550 test cases passed.
* Runtime: 4 ms
* Memory Usage: 5.9 MB
*/
class Solution2 {
public:
bool detectCapitalUse(string word) {
bool allUpper = word[0] < 'a' && !(word.size() > 1 && word[1] >= 'a');
if (allUpper) {
for (int i = 1; i < word.size(); i++) {
if (word[i] >= 'a') return false;
}
} else {
for (int i = 1; i < word.size(); i++) {
if (word[i] < 'a') return false;
}
}
return true;
}
};