mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
35 lines
944 B
HTML
35 lines
944 B
HTML
<p>我们定义,在以下情况时,单词的大写用法是正确的:</p>
|
||
|
||
<ul>
|
||
<li>全部字母都是大写,比如 <code>"USA"</code> 。</li>
|
||
<li>单词中所有字母都不是大写,比如 <code>"leetcode"</code> 。</li>
|
||
<li>如果单词不只含有一个字母,只有首字母大写, 比如 <code>"Google"</code> 。</li>
|
||
</ul>
|
||
|
||
<p>给你一个字符串 <code>word</code> 。如果大写用法正确,返回 <code>true</code> ;否则,返回 <code>false</code> 。</p>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>示例 1:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>word = "USA"
|
||
<strong>输出:</strong>true
|
||
</pre>
|
||
|
||
<p><strong>示例 2:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>word = "FlaG"
|
||
<strong>输出:</strong>false
|
||
</pre>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>1 <= word.length <= 100</code></li>
|
||
<li><code>word</code> 由小写和大写英文字母组成</li>
|
||
</ul>
|