본문 바로가기

Algorithm/Brute Force

(C++) - LeetCode (easy) 520. Detect Capital

반응형

https://leetcode.com/problems/detect-capital/

 

Detect Capital - LeetCode

Can you solve this real interview question? 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.com

전수조사 문제였습니다.

📕 풀이방법

📔 풀이과정

모두 대문자거나, 모두 소문자거나, 처음만 대문자인 경우 true를 반환하도록 각각의 함수를 작성해줍니다.

📔 정답 출력 | 반환

올바른 대문자 사용이 되었다면 true를 아니면 false를 반환합니다.


📕 Code

📔 C++

class Solution {
public:
    bool isAllCapitals(string word){
        for(auto w : word) {
            if('A' > w || w > 'Z') return false;
        }
        return true;
    }
    bool isAllNotCapitals(string word){
        for(auto w : word) {
            if('a' > w || w > 'z') return false;
        }
        return true;
    }
    bool isOnlyFistCapital(string word) {
        if('A' > word[0] || word[0] > 'Z') return false;
        for(int i = 1; i < word.size(); i++) {
            if('a' > word[i] || word[i] > 'z') return false;
        }
        return true;
    }
    bool detectCapitalUse(string word) {
        return isAllCapitals(word) || isAllNotCapitals(word) || isOnlyFistCapital(word);
    }
};

*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.