LeetCode --- 检测大写字母

给定一个单词,你需要判断单词的大写使用是否正确。

我们定义,在以下情况时,单词的大写用法是正确的:

全部字母都是大写,比如”USA”。
单词中所有字母都不是大写,比如”leetcode”。
如果单词不只含有一个字母,只有首字母大写, 比如 “Google”。
否则,我们定义这个单词没有正确使用大写字母。

示例 1:
输入: “USA”
输出: True

示例 2:
输入: “FlaG”
输出: False

public class DetectCapitalUse {

    @Test
    public void detectCapitalUseTest() {
        Assert.assertTrue(detectCapitalUse("USA"));
        Assert.assertTrue(detectCapitalUse("g"));
        Assert.assertFalse(detectCapitalUse("FlaG"));
    }

    public boolean detectCapitalUse(String word) {
        char c1 = word.charAt(0);
        String temp = word.substring(1, word.length());
        if (betweenChars(c1, 'A', 'Z') && temp.length() != 0
                && temp.chars().allMatch(c -> betweenChars((char)c, 'a', 'z'))) {
            return true;
        }
        return word.chars().allMatch(c -> betweenChars((char) c, 'A', 'Z'))
                || word.chars().allMatch(c -> betweenChars((char)c, 'a', 'z'));
    }

    private boolean betweenChars(char c, char startChar, char endChar) {
        return c >= startChar && c <= endChar;
    }

}

你可能感兴趣的:(题目)