How do I select the unique elements from the list {0, 1, 2, 2, 2, 3, 4, 4, 5} so that I get {0, 1, 3, 5}, effectively removing the repeated elements {2, 4}?
|
1
|
|||||
|
|
|
|
||
|
|
|
|
make sure you're using Linq and .NET framework 3.5. |
||||
|
|
|
If Linq isn't available to you because you have to support legacy code that can't be upgraded, then declare a Dictionary, where the first int is the number and the second int is the number of occurences. Loop through your List, loading up your Dictionary. When you're done, loop through your Dictionary selecting only those elements where the number of occurences is 1. |
||
|
|
|
|
C# 2.0 solution:
|
||||||||||
|
|
|
I believe Matt meant to say:
|
||||||||
|
|
|
With lambda..
|
|||
|
|
