Write a method named removeEvens that accepts a Set of integers as a parameter and removes the even values from the set, returning those values as a new set.
The new set's even values should be ordered in ascending numerical order.
For example, if a set set1 contains [0, 17, 16, 7, 10, 14, 13, 12], and we make the following call:
Set<Integer> set2 = removeEvens(set1);
Then after the call set1 and set2 would contain the following values:
set1: [17, 7, 13]
set2: [0, 10, 12, 14, 16]