[LeetCode] 520. Detect Capital - 문제풀이
Description 모든문자가 대문자거나, 소문자, 혹은 첫번째 문자만 대문자면서 모든문자가 소문자인 케이스일 경우 true, 이외에 문자는 false를 반환하는 문제입니다. 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 ..