LeetCode刷题笔记520:检测大写字母(Python实现)

题目描述:

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

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

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

示例 1:

输入: "USA"
输出: True
示例 2:

输入: "FlaG"
输出: False
注意: 输入是由大写和小写拉丁字母组成的非空单词。

Solution:

根据题目要求分情况讨论:

1.如果字符串全为大写或全不为大写,则正确
2.如果字符串首字母为大写,其他均为小写,则正确
3.其他写法错误

code:

class Solution(object):
    def detectCapitalUse(self, word):
        """
        :type word: str
        :rtype: bool
        """
        def isUpper(c):
            if c >='A' and c <='Z':
                return True
        count = 0
        for i in range(len(word)):
            if isUpper(word[i]):
                count += 1
        if count == len(word) or count == 0:
            return True
        if isUpper(word[0]) and count == 1:
            return True
        else:
            return False
        
                
        

 

你可能感兴趣的:(LeetCode)