JAVA 2 Sep 2019 List Intersection, Union, & Unique Ever have two lists that you need to pull the unique elements from? Or need to pull the elements in both? Here is a ListUtils class for doing just those steps. package name.mymiller.extensions.utils; import java.util.ArrayList; import java.ut… Read More