I have a string that looks like this:
255,255,124,532,322,322,322,664,342
I need it to look like this (No Duplicates)
255,124,532,322,664,342
I wrote this code, but it just returns a bunch of ",,,,,,,,,,,". The max amount of elements is 30 in the original string, but I'm not sure if I am...