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
- Matrix
- Math
- Binary Search
- 자바
- simulation
- sorting
- 파이썬
- hash table
- SQL
- implement
- two pointers
- Method
- java
- database
- Number Theory
- Counting
- string
- geometry
- array
- Data Structure
- 코딩테스트
- greedy
- 코테
- Binary Tree
- Stack
- 구현
- dynamic programming
- bit manipulation
- Class
- Tree
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 외계어 사전 본문
1. Input
1) String[] spell
2) String[] dic
2. Output
1) spell에 있는 알파벳을 1번씩만 사용해 만들 수 있는 단어가 dic에 있다면 1, 없다면 2를 반환
3. Constraint
1) spell과 dic의 원소는 알파벳 소문자로만 이루어져있다.
2) 2 ≤ spell의 크기 ≤ 10
3) spell의 원소의 길이는 1
4) 1 ≤ dic의 크기 ≤ 10
5) 1 ≤ dic의 원소의 길이 ≤ 10
6) spell의 원소를 모두 사용해 단어를 만들어야 한다.
7) spell의 원소를 모두 사용해 만들 수 있는 단어는 dic에 1개뿐이다.
8) dic과 spell 모두 중복된 원소를 갖지 않는다.
4. Example
Input: spell=["p", "o", "s"], dic=["sod", "eocd", "qixm", "adio", "soo"] -> Output: 2
Input: spell=["z", "d", "x"], dic=["def", "dww", "dzx", "loveaw"] -> Output: 1
설명:
- dic의 단어 중 p, o, s로 만들 수 있는 단어가 없으므로 2를 반환한다.
- dic의 단어 중 z, d, x로 만들 수 있는 단어로 dzx가 있으므로 1을 반환한다.
5. Code
1) 첫 코드(2023/02/06)
import java.util.*;
ArrayList<String> dic_list = new ArrayList<String>(Arrays.asList(dic));
// 길이가 다른 dic의 단어 제거
for(int i=dic_list.size()-1 ; i>=0 ; i--){
if(dic_list.get(i).length()!=spell.length){
dic_list.remove(dic_list.get(i));
continue;
}
}
// spell의 알파벳을 모두 1번씩만 썼는지 확인
for(int i=dic_list.size()-1 ; i>=0 ; i--){
boolean isHere = true;
ArrayList<String> s = new ArrayList<String>(Arrays.asList(spell));
for(int j=0 ; j<dic_list.get(i).length() ; j++){
if(!s.contains(dic_list.get(i).substring(j,j+1))){
isHere = false; break;
} else
s.remove(dic_list.get(i).substring(j,j+1));
}
if(!isHere) dic_list.remove(dic_list.get(i));
}
return dic_list.size()==0 ? 2 : 1;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 382. Linked List Random Node (0) | 2023.02.14 |
---|---|
[프로그래머스/Lv.1] 크기가 작은 부분문자열 (0) | 2023.02.09 |
[LeetCode/Easy] 345. Reverse Vowels of a String (0) | 2023.02.06 |
[LeetCode/Easy] 292. Nim Game (0) | 2023.01.27 |
[LeetCode/Easy] 290. Word Pattern (0) | 2023.01.27 |