#27 - Remove Duplicate Numbers
Example 1
Input
[1, 3, 2, 2, 4, 3, 5, 1]Output
[1,3,2,4,5]Example 2
Input
[3, 1, 2, 3, 4, 2, 5, 5, 1]Output
[3,1,2,4,5]Last updated
[1, 3, 2, 2, 4, 3, 5, 1][1,3,2,4,5][3, 1, 2, 3, 4, 2, 5, 5, 1][3,1,2,4,5]Last updated