1. Set 호출되는 원리와 순서를 설명하시오. 2. 아래와 같이 출력되도록 하시오. HashSet hSet = new HashSet(); hSet.add(new Person("LEE", 10)); hSet.add(new Person("LEE", 10)); hSet.add(new Person("PARK", 35)); hSet.add(new Person("PARK", 35)); System.onut.println("저장된 데이터 수: " + hSet.size()); System.out.println(hSet); /* ============ 저장된 데이터 수: 2 [LEE(10세), PARK(35세)] */ package tisotry; import java.util.HashSet; class Person ..