코린이의 소소한 공부노트

[LeetCode/Easy] 1832. Check if the Sentence Is Pangram 본문

코딩테스트 풀이/JAVA

[LeetCode/Easy] 1832. Check if the Sentence Is Pangram

무지맘 2023. 1. 5. 23:00

1. Input

1) 문자열 sentence

 

2. Output

1) sentencepangram이면 true, 아니면 false를 반환

- pangram: 모든 영어 알파벳이 최소 1번씩 들어가 있는 문장

 

3. Constraint

1) 1 <= sentence.length <= 1000

2) sentence는 영어 소문자로만 이루어져 있다.

 

4. Example

Input: sentence = "leetcode" -> Output: false

 

5. Code

1) 첫 코드(2022/06/14)

int[] abc = new int[26];
for(int i=0 ; i<sentence.length() ; i++)
    abc[sentence.charAt(i)-97]++;

for(int i=0 ; i<26 ; i++)
    if(abc[i] == 0) return false;

return true;