I have a string that looks like the following:
"1,100,53,5000,23,3,3,4,5,5"
I want to simply turn this into a Array of distinct Integer elements. Something that would look like:
Array(1, 100, 53, 5000, 23, 3, 4, 5)
Is there a String method in Scala that would help with this?