import java.util.HashSet; import java.util.Set; /* Greater than 10? You're not a good fit for us */ public class Solution { public static HashSet<Integer> createSet() { // write your code here HashSet<Integer> hs=new HashSet<Integer>(); hs.add(1); hs.add(2); hs.add(3); hs.add(4); hs.add(5); hs.add(6); hs.add(7); hs.add(8); hs.add(9); hs.add(10); hs.add(11); hs.add(12); hs.add(13); hs.add(14); hs.add(15); hs.add(16); hs.add(17); hs.add(18); hs.add(19); hs.add(20); return hs; } public static HashSet<Integer> removeAllNumbersGreaterThan10(HashSet<Integer> set) {