You cannot assign a HashSet to a List


List<Integer> aj = new HashSet<List<Integer>>();//???

It'd be more appropriate to create a new list for each line, add things, then add the list to a...