1 Star 0 Fork 0

徐长贺/Leetcode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
_520.java 2.32 KB
一键复制 编辑 原始数据 按行查看 历史
Fisher Coder 提交于 6年前 . refactor 520
package com.fishercoder.solutions;
/**
* 520. Detect Capital
*
* Given a word, you need to judge whether the usage of capitals in it is right or not.
* We define the usage of capitals in a word to be right when one of the following cases holds:
All letters in this word are capitals, like "USA".
All letters in this word are not capitals, like "leetcode".
Only the first letter in this word is capital if it has more than one letter, like "Google".
Otherwise, we define that this word doesn't use capitals in a right way.
Example 1:
Input: "USA"
Output: True
Example 2:
Input: "FlaG"
Output: False
Note: The input will be a non-empty word consisting of uppercase and lowercase latin letters.
*/
public class _520 {
public static class Solution1 {
public boolean detectCapitalUse(String word) {
char[] words = word.toCharArray();
boolean firstLetterCap = false;
if (Character.isUpperCase(words[0])) {
firstLetterCap = true;
}
if (firstLetterCap) {
if (words.length >= 2) {
int i = 2;
if (Character.isUpperCase(words[1])) {
//then all following must be all uppercase
while (i < words.length) {
if (!Character.isUpperCase(words[i])) {
return false;
}
i++;
}
return true;
} else {
//then all following must be all lowercase
while (i < words.length) {
if (!Character.isLowerCase(words[i])) {
return false;
}
i++;
}
return true;
}
}
return true;
} else {
//then all following must be all lowercase
int i = 1;
while (i < words.length) {
if (!Character.isLowerCase(words[i])) {
return false;
}
i++;
}
return true;
}
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/isulong/Leetcode.git
git@gitee.com:isulong/Leetcode.git
isulong
Leetcode
Leetcode
master

搜索帮助