-
Notifications
You must be signed in to change notification settings - Fork 0
/
520.hpp
39 lines (33 loc) · 804 Bytes
/
520.hpp
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
#ifndef LEETCODE_520_HPP
#define LEETCODE_520_HPP
#include <iostream>
#include <queue>
#include <algorithm>
#include <vector>
#include <unordered_map>
#include <unordered_set>
#include <set>
#include <numeric>
#include <stack>
#include <string>
using namespace std;
class Solution {
public:
bool detectCapitalUse(string word) {
if (word.size() <= 1)
return true;
if (word[0] > 'Z')
return word[1] > 'Z' && allCapletters(word, false);
else
return allCapletters(word, word[1] <= 'Z');
}
private:
bool allCapletters(string &word, bool flag) {
for (int i = 2; i < word.size(); ++i) {
if ((word[i] <= 'Z') != flag)
return false;
}
return true;
}
};
#endif //LEETCODE_520_HPP