반응형
https://leetcode.com/problems/detect-capital/
전수조사 문제였습니다.
📕 풀이방법
📔 풀이과정
모두 대문자거나, 모두 소문자거나, 처음만 대문자인 경우 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);
}
};
*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.
'Algorithm > Brute Force' 카테고리의 다른 글
(C++) - LeetCode (easy) 653. Two Sum IV - Input is a BST (0) | 2023.06.06 |
---|---|
(C++) - LeetCode (easy) 599. Minimum Index Sum of Two Lists (0) | 2023.05.16 |
(C++) - LeetCode (easy) 507. Perfect Number (0) | 2023.04.09 |
(C++) - LeetCode (easy) 500. Keyboard Row (0) | 2023.04.04 |
(C++) - LeetCode (easy) 496. Next Greater Element I (0) | 2023.04.03 |