문제 풀이방법 소수를 판단하는 함수와 dfs방식으로 숫자 조합을 만드는 함수를 구현 중복없이 담기위해 HashSet 생성하여 모든 숫자 조합을 담은 후 소수를 판단하여 카운트 코드 import java.util.*; class Solution { HashSet numbersSet = new HashSet(); public int solution(String numbers) { dfs("", numbers); int count = 0; Iterator it = numbersSet.iterator(); while (it.hasNext()) { int number = it.next(); if (isPrime(number)) count++; } return count; } public boolean isPrim..