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
- implement
- Data Structure
- array
- java
- greedy
- database
- dynamic programming
- bit manipulation
- 자바
- 코테
- Counting
- 코딩테스트
- string
- 파이썬
- 구현
- Binary Search
- Binary Tree
- simulation
- Method
- Stack
- hash table
- Number Theory
- two pointers
- geometry
- SQL
- Tree
- Matrix
- Class
- sorting
- Math
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1160. Find Words That Can Be Formed by Characters 본문
코딩테스트 풀이/JAVA
[LeetCode/Easy] 1160. Find Words That Can Be Formed by Characters
무지맘 2023. 4. 6. 01:141. Input
1) String[] words
2) String chars
2. Output
1) words의 단어들 중 chars에 있는 알파벳으로 만들 수 있는 단어들의 길이의 합을 반환
- chars에 있는 각 알파벳은 1번씩 사용 가능하다.
- 같은 알파벳이 2개 있다면 그 알파벳은 2번 사용이 가능한 것이다.
3. Constraint
1) 1 <= words.length <= 1000
2) 1 <= words[i].length, chars.length <= 100
3) words의 단어와 chars는 알파벳 소문자로 이루어져 있다.
4. Example
Input: words = ["cat","bt","hat","tree"], chars = "atach" -> Output: 6
설명: chars에 있는 알파벳으로 만들 수 있는 단어는 cat, hat이므로 3+3=6을 반환한다.
5. Code
1) 첫 코드(2023/04/06)
int[] ch = new int[26];
for(int i=0 ; i<chars.length() ; i++)
ch[chars.charAt(i)-'a']++;
int[] wo = new int[26];
int answer = 0;
for(String s : words){
answer += s.length();
for(int i=0 ; i<s.length() ; i++)
wo[s.charAt(i)-'a']++;
for(int i=0 ; i<26 ; i++){
if(wo[i]>ch[i]){
answer -= s.length(); break;
}
}
Arrays.fill(wo,0);
}
return answer;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1232. Check If It Is a Straight Line (0) | 2023.04.06 |
---|---|
[LeetCode/Easy] 1128. Number of Equivalent Domino Pairs (0) | 2023.04.06 |
[LeetCode/Easy] 1184. Distance Between Bus Stops (0) | 2023.04.05 |
[LeetCode/Easy] 1047. Remove All Adjacent Duplicates In String (0) | 2023.04.04 |
[LeetCode/Easy] 1037. Valid Boomerang (0) | 2023.04.04 |