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
- 자바
- 구현
- Data Structure
- Math
- array
- greedy
- implement
- Binary Search
- Matrix
- simulation
- Tree
- 파이썬
- SQL
- string
- Binary Tree
- sorting
- dynamic programming
- 코테
- bit manipulation
- hash table
- Method
- Stack
- geometry
- Number Theory
- two pointers
- 코딩테스트
- database
- java
- Counting
- Class
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1684. Count the Number of Consistent Strings 본문
1. Input
1) 문자열 allowed
2) 문자열 배열 words
2. Output
1) words의 요소 중 allowed에 있는 문자로만 이루어진 요소의 개수를 반환
3. Constraint
1) 1 <= words.length <= 104
2) 1 <= allowed.length <= 26
3) 1 <= words[i].length <= 10
4) allowed에 있는 문자들 중에 중복은 없다.
5) words와 allowed는 영어 소문자로만 이루어져 있다.
4. Example
Input: allowed = "ab", words = ["ad","bd","aaab","baa","badab"] -> Output: 2
설명: a나 b로만 이루어진 문자열은 “aaab”와 “baa” 두 가지이므로 2를 반환한다.
5. Code
1) 첫 코드(2022/06/12)
String pattern = "[" + allowed + "]+";
int count = 0;
for(int i=0 ; i<words.length ; i++){
if(words[i].matches(pattern))
count++;
}
return count;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1704. Determine if String Halves Are Alike (0) | 2023.01.02 |
---|---|
[LeetCode/Easy] 1688. Count of Matches in Tournament (0) | 2023.01.02 |
[LeetCode/Easy] 1678. Goal Parser Interpretation (0) | 2023.01.02 |
[LeetCode/Easy] 1672. Richest Customer Wealth (0) | 2023.01.02 |
[LeetCode/Easy] 884. Uncommon Words from Two Sentences (0) | 2022.12.30 |