Write a python function that takes a list and returns a new list with unique elements of the first list.
Answers
Answered by
1
Answer:
Write a Python function that takes a list and returns a new list with unique elements of the first list. Sample Solution:- Python Code: def unique_list(l): x = [] for a in l: if a not in x: x.append(a) return x print(unique_list([1,2,3,3,3,3,4,5])) Pictorial presentation: Flowchart: Python Code Editor
Similar questions