Question
5. Write a function that removes duplicates in a list of strings. ' ("a", "b", "a", "b", "a", "b", "c") should return ' ("a", "b", "c").
Question image 1