I know that in elixir to remove duplicate values from a list, you need to use Enum.uniq(my_list).
Enum.uniq(my_list)
Given a list of [1, 1, 2, 3, 3, 4, 5] what
[1, 1, 2, 3, 3, 4, 5]