Is there a way to delete duplicate values in an array or a list?
For example, if list has values of:
1,2,3,4,3,5,6,7
and I only want 1,2,3,4,5,6,7 to be in the list (or the array), I need to somehow remove the other '3'. Is there an easy way to do so?