반응형
https://programmers.co.kr/learn/courses/30/lessons/42577?language=java
import java.util.*;
class Solution {
public boolean solution(String[] phone_book) {
boolean answer = true;
HashSet<String> set = new HashSet<>();
for(int i=0; i<phone_book.length; i++){
set.add(phone_book[i]);
}
answer = check(set, phone_book);
return answer;
}
public static boolean check(HashSet<String> set, String[] book){
for(int i=0; i<book.length; i++){
for(int j=1; j<book[i].length(); j++){
if(set.contains(book[i].substring(0,j))){
return false;
}
}
}
return true;
}
}
반응형
'코딩테스트 > 프로그래머스 2단계' 카테고리의 다른 글
프로그래머스 2단계 - 주식가격(스택/큐) (0) | 2021.09.13 |
---|---|
프로그래머스 2단계 - 프린터(스택/큐) (0) | 2021.09.09 |
프로그래머스 2단계 - 다리를 지나는 트럭(스택/큐) (0) | 2021.09.09 |
프로그래머스 2단계 - 기능개발(스택/큐) (0) | 2021.09.09 |
프로그래머스 2단계 - 위장(해쉬) (0) | 2021.09.08 |