EXTRA CREDIT: 5 POINTS Write a function list_to_set(input_li…
EXTRA CREDIT: 5 POINTS Write a function list_to_set(input_list) that takes a list of integers input_list as input and returns a list containing the unique elements of the list. The order of elements in the returned list does not matter. Example: list_to_set() Returns: Note: You CANNOT use the set() function or list comprehension to implement this.