leetcode 520. 检测大写字母 python
作者:互联网
题目描述:
题解:
1.遍历输入字符串word的每一个字符,将其中的大写字母位置记录在pos中。
2.判断pos:
<1>如果len(pos)和word长度相同,说明是全部大写的情况。
<2>如果len为空,对应全部小写的情况。
<3>如果len长度为1,并且对应的位置序号为0,对应首字母大写的情况。
其他情况全部返回False。
class Solution(object): def detectCapitalUse(self, word): pos = [] for i in range(len(word)): if word[i]>='A' and word[i]<='Z': pos.append(i) if len(pos)==len(word): return True elif len(pos)==0: return True elif len(pos)==1 and pos[0]==0: return True return False
在leetcode评论区看到的绝妙解答:
标签:word,python,pos,len,大写字母,520,大写,leetcode 来源: https://blog.csdn.net/laurasam/article/details/121302261