hash2 프로그래머스 2단계 - 위장(해쉬) https://programmers.co.kr/learn/courses/30/lessons/42578 코딩테스트 연습 - 위장 programmers.co.kr import java.util.*; class Solution { public int solution(String[][] clothes) { int answer = 1; //종류와 종류의 갯수를 구한다. HashMap map = new HashMap(); for(int i=0; i 2021. 9. 8. 프로그래머스 2단계 - 전화번호 목록(해시) https://programmers.co.kr/learn/courses/30/lessons/42577?language=java 코딩테스트 연습 - 전화번호 목록 전화번호부에 적힌 전화번호 중, 한 번호가 다른 번호의 접두어인 경우가 있는지 확인하려 합니다. 전화번호가 다음과 같을 경우, 구조대 전화번호는 영석이의 전화번호의 접두사입니다. 구조 programmers.co.kr import java.util.*; class Solution { public boolean solution(String[] phone_book) { boolean answer = true; HashSet set = new HashSet(); for(int i=0; i 2021. 9. 7. 이전 1 다음 반응형