Create a function that takes in two lists and returns an intersection list and a union list.
While the input lists may have duplicate numbers, the returned intersection and union lists should be set-ified - that is, contain no duplicates. Returned lists should be sorted in ascending order.
List 1: [5, 6, 6, 6, 8, 9]
List 2: [3, 3, 4, 4, 5, 5, 8]
Intersection: [5, 8]
# 5 and 8 are the only 2 numbers that exist in both lists.
Union: [3, 4, 5, 6, 8, 9]
# Each number exists in at least one list.
intersection_union([1, 2, 3, 4, 4], [4, 5, 9]) ➞ [[4], [1, 2, 3, 4, 5, 9]]
intersection_union([1, 2, 3], [4, 5, 6]) ➞ [[], [1, 2, 3, 4, 5, 6]]
intersection_union([1, 1], [1, 1, 1, 1]) ➞ [[1], [1]]
[Intersection], [Union].[] for the intersection.