hello,
I've been pondering on a thing here for while now. The thing is that I want to read in several of integers, which I've fixed. And the problem now is that I want to output the integers I have input. The thing is that I only want to output unique numbers.
For example, I input:
1, 2, 3, 3, 4, 5, 1, 10, 9, 8
the output should be:
1, 2, 3, 4, 5, 10, 9, 8
-------------------------
Any tip would be helpful.