Remove duplicate numbers from the list

My list is like this ["01","02","03","04","04","02","05","04"]
so there are same numbers twice in the list 02 and thrice 04.
i want the the numbers should not repeated that is same number only one time. so how can i do it?

Check the procedure RemoveDuplicates here:

2 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.