-
Notifications
You must be signed in to change notification settings - Fork 0
/
520.检测大写字母.js
67 lines (64 loc) · 1.21 KB
/
520.检测大写字母.js
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
/*
* @lc app=leetcode.cn id=520 lang=javascript
*
* [520] 检测大写字母
*
* https://leetcode.cn/problems/detect-capital/description/
*
* algorithms
* Easy (57.39%)
* Likes: 204
* Dislikes: 0
* Total Accepted: 73.9K
* Total Submissions: 128.8K
* Testcase Example: '"USA"'
*
* 我们定义,在以下情况时,单词的大写用法是正确的:
*
*
* 全部字母都是大写,比如 "USA" 。
* 单词中所有字母都不是大写,比如 "leetcode" 。
* 如果单词不只含有一个字母,只有首字母大写, 比如 "Google" 。
*
*
* 给你一个字符串 word 。如果大写用法正确,返回 true ;否则,返回 false 。
*
*
*
* 示例 1:
*
*
* 输入:word = "USA"
* 输出:true
*
*
* 示例 2:
*
*
* 输入:word = "FlaG"
* 输出:false
*
*
*
*
* 提示:
*
*
* 1 <= word.length <= 100
* word 由小写和大写英文字母组成
*
*
*/
// @lc code=start
/**
* @param {string} word
* @return {boolean}
*/
var detectCapitalUse = function (word) {
// ^[A-Z]+$ 全为大写
// ^[A-Z][a-z]*$ 首字母大写
// ^[a-z]+$ 全为小写
const reg = /^[A-Z]+$|^[A-Z][a-z]*$|^[a-z]+$/g;
return reg.test(word);
};
// @lc code=end