LeetCode 솔루션					분류
				
						[1/2] 520. Detect Capital
본문
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, like "Google".
Given a string word, return true if the usage of capitals in it is right.
Example 1:
Input: word = "USA" Output: true
Example 2:
Input: word = "FlaG" Output: false
Constraints:
- 1 <= word.length <= 100
- wordconsists of lowercase and uppercase English letters.
Accepted
365.2K
Submissions
<div class="text관련자료
- 
			링크
			댓글 1
					
			학부유학생님의 댓글
- 익명
- 작성일
class Solution:
    def detectCapitalUse(self, word: str) -> bool:
        return len(word) == 1 or word[1:].islower() or word.isupper() 
								 
							







