1. Write a method that returns the union of two array lists of integers using the following header: public static ArrayList union (ArrayList list1, ArrayList list2) For example, the union of two array lists {2, 3, 1, 5} and {3, 4, 6} is {2, 3, 1, 5,
Answers (1)