본문 바로가기

Algorithm/자료구조

(C++) - LeetCode (easy) 1832. Check if the Sentence Is Pangram

반응형

https://leetcode.com/problems/check-if-the-sentence-is-pangram/description/

간단 구현 문제였습니다.

📕 풀이방법

📔 입력 및 초기화

alphabat과 빈도 수를 각각 key, value로 alphaMap을 선언해줍니다.

📔 풀이과정

sentence의 원소를 순회하며 alphabat별 빈도수를 계산해줍니다.

📔 정답 출력 | 반환

map의 size가 곧 sentence에서 나온 alphabat의 종류이므로 모든 종류의 개수 26개인지 여부를 확인합니다.


📕 Code

📔 C++

class Solution {
public:
    bool checkIfPangram(string sentence) {
        map <char, int> alphaMap;
        for(auto s : sentence) alphaMap[s]++;
        return alphaMap.size() == 26;
    }
};

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