#풀이import java.io.*;import java.util.Arrays;import java.util.HashSet;import java.util.Set;import java.util.StringTokenizer;public class Main { public static int[][][] isH = new int[10][10][10]; // 합이 아니면 0, 합이면 1, 외쳤으면 2이상 (1이 없으면 결) public static boolean checkH(Card a, Card b, Card c){ Set Sset = new HashSet(); Set Cset = new HashSet(); Set Bset = new HashSet(); ..