vote up 2 vote down star
1

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}?

flag

At least outside of C# (I can't say for C# itself), the starting point isn't really a set if it contains duplicates. It might be a multi-set, or a list, or ... – Jonathan Leffler Nov 15 '08 at 16:24
Thanks for the correction. I fixed it. – Ozgur Ozcitak Nov 17 '08 at 9:38

6 Answers

vote up 10 vote down check
var numbers = new[] { 0, 1, 2, 2, 2, 3, 4, 4, 5 };

var uniqueNumbers =
    from n in numbers
    group n by n into nGroup
    where nGroup.Count() == 1
    select nGroup.Key;
link|flag
vote up 2 vote down
var nums = new int{ 0...4,4,5};
var distinct = nums.Distinct();

make sure you're using Linq and .NET framework 3.5.

link|flag
This returns {0, 1, 2, 3, 4, 5} including repeated elements. – Ozgur Ozcitak Nov 15 '08 at 8:24
Oh, my mistake. I didn't notice you wanted to remove those duplicate entries. – CVertex Nov 15 '08 at 8:26
vote up 2 vote down

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.

link|flag
vote up 5 vote down

C# 2.0 solution:

	static IEnumerable<T> GetUniques<T>(IEnumerable<T> things)
	{
		Dictionary<T, int> counts = new Dictionary<T, int>();
		foreach (T item in things)
		{
			int count;
			if (counts.TryGetValue(item, out count))
				counts[item] = ++count;
			else
				counts.Add(item, 1);
		}
		foreach (KeyValuePair<T, int> kvp in counts)
		{
			if (kvp.Value == 1)
				yield return kvp.Key;
		}
	}
link|flag
This will throw a KeyNotFoundException – Ch00k Nov 17 '08 at 9:46
1  
This works but you need to change counts[item]++; into if (counts.ContainsKey(item)) counts[item]++; else counts.Add(item, 1); – Ozgur Ozcitak Dec 23 '08 at 9:27
1  
Fixed. Teach me to write code without seeing if it compiles! – Matt Howells Jul 6 at 9:20
vote up 2 vote down

I believe Matt meant to say:

 static IEnumerable<T> GetUniques<T>(IEnumerable<T> things)
 {
     Dictionary<T, bool> uniques = new Dictionary<T, bool>();
     foreach (T item in things)
     {
         if (!(uniques.ContainsKey(item)))
         {
             uniques.Add(item, true);
         }
     }
     return uniques.Keys;
 }
link|flag
This is the .NET 2.0 version of what CVertex posted. It also returns the duplicate elements. – Ozgur Ozcitak Dec 23 '08 at 9:26
If you could downvote your own posts I would. – Robert Rossney Dec 27 '08 at 20:58
Well, you can delete 'em. – Frederick Jan 16 at 13:01
No, I prefer leaving them (as the French said the English occasionally shot an admiral) pour encourager l'autres. – Robert Rossney Jan 19 at 10:19
vote up 2 vote down

With lambda..

var all = new[] {0,1,1,2,3,4,4,4,5,6,7,8,8}.ToList();
var unique = all.GroupBy(i => i).Where(i => i.Count() == 1).Select(i=>i.Key);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.