Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to find whether the List<string> has duplicate values or not?

I tried the below code. Is there any best to way to achieve?

var lstNames = new List<string> { "A", "B", "A" };

if (lstNames.Distinct().Count() != lstNames.Count())
{
    Console.WriteLine("List contains duplicate values.");
}
share|improve this question
Sorry Guys.. I missed the simple logic. – Prasad Kanaparthi Jan 16 at 16:59
2  
Please don't say sorry. We all here for learning.. – Soner Gönül Jan 16 at 17:02
@SonerGönül, Agreed and Thanks:) – Prasad Kanaparthi Jan 16 at 17:07

3 Answers

up vote 4 down vote accepted

Try to use GroupBy and Any like;

lstNames.GroupBy(n => n).Any(c => c.Count() > 1);

GroupBy method;

Groups the elements of a sequence according to a specified key selector function and projects the elements for each group by using a specified function.

Any method, it returns boolean;

Determines whether any element of a sequence exists or satisfies a condition.

share|improve this answer
Hmmmm.. I missed the simple logic. – Prasad Kanaparthi Jan 16 at 17:00
1  
How is this better than the code in the OP? You still need to group all of the items, so you don't really have any short circuiting here. – Servy Jan 16 at 17:07
@Servy, How can i comapre which is best performace code? either my above logic(using Count) or using GroupBy & Any ? – Prasad Kanaparthi Jan 16 at 17:19
1  
This not only has to iterate through all the elements to build the groups, it then has to iterate through potentially all of the groups too. Your original coffee will be faster. – Rawling Jan 16 at 17:29
@Rawling, thanks :) – Prasad Kanaparthi Jan 16 at 17:38
show 1 more comment
var duplicateExists = lstNames.GroupBy(n => n).Any(g => g.Count() > 1);
share|improve this answer
1  
Hmmmm.. I missed the simple logic. – Prasad Kanaparthi Jan 16 at 16:59
How can i comapre which is best performace code? either my above logic(using Count) or using GroupBy & Any ? – Prasad Kanaparthi Jan 16 at 17:20
I think Any() is preferred than Count(), but I don't know the performance difference between Distinct() and GroupBy() – Nasmi Sabeer Jan 16 at 17:22
I think in case of List<someClass> you need to group by all of the items and again you need to apply Any() of all items. I am not sure how can i compare with just using Count() in my example. – Prasad Kanaparthi Jan 16 at 17:26

If you're looking for the most efficient way of doing this,

var lstNames = new List<string> { "A", "B", "A" };
var hashset = new HashSet<string>();
foreach(var name in names)
{
    if (!hashset.Add(name))
    {
        Console.WriteLine("List contains duplicate values.");
        break;
    }
}

will stop as soon as it finds the first duplicate. You can wrap this up in a method (or extension method) if you'll be using it in several places.

share|improve this answer
+1 performance ten times better in worst case, than in GroupBy – Ilya Ivanov Jan 16 at 17:12
@IlyaIvanov Actually, in the worst case (no duplicates), it's about the same, maybe just a tad faster. In the best case (the first two items are duplicates) it's 100% faster, as it will be O(1) not O(n). In the general case it will be dependent on the actual rate of duplicates in the underlying data, while GroupBy and Distinct take the same time regardless of the underlying data. – Servy Jan 16 at 18:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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