Write a method that returns the union of two arrays lists of integers using the following header: Public static ArrayList union (Array list, ArrayList list2) For example, the addition of two array lists (2,3,1,5) and (3,4,6) is (2,3,1,5,3,4,6).
Answers (1)