Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Number Theory
- simulation
- Method
- java
- array
- 자바
- Binary Tree
- 구현
- Data Structure
- string
- implement
- Class
- dynamic programming
- Math
- database
- hash table
- SQL
- bit manipulation
- two pointers
- Stack
- Counting
- 코딩테스트
- Tree
- sorting
- geometry
- 파이썬
- greedy
- 코테
- Binary Search
- Matrix
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1832. Check if the Sentence Is Pangram 본문
1. Input
1) 문자열 sentence
2. Output
1) sentence가 pangram이면 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;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1844. Replace All Digits with Characters (0) | 2023.01.05 |
---|---|
[LeetCode/Easy] 1837. Sum of Digits in Base K (0) | 2023.01.05 |
[LeetCode/Easy] 1827. Minimum Operations to Make the Array Increasing (0) | 2023.01.05 |
[LeetCode/Easy] 1822. Sign of the Product of an Array (0) | 2023.01.05 |
[LeetCode/Easy] 20. Valid Parentheses (0) | 2023.01.05 |