I have seven words in the array:

string[7] = {x,x,x,x,x,x,x};

the x is generated from another array:

string[4]={a,b,c,d};

that means each x can be either a or b or c or d. It is randomly generated. this could be an example:

string[7]= {a,a,d,a,a,c,a}

my question is how can I check if there are five x which has the same value?

This is for a poker app Im working on.

link|improve this question

feedback

4 Answers

up vote 10 down vote accepted

You can use Linq to find the largest number of equal items and test if this is 5 or more:

int maxCount = s.GroupBy(x => x).Select(x => x.Count()).Max();
link|improve this answer
** slick! ** – Shane Cusson Mar 3 '10 at 22:54
Don't you just love Linq ? – HaxElit Mar 3 '10 at 23:02
Thanks. worked like charm. :D Very useful! – hafhadg3 Mar 3 '10 at 23:15
feedback

You can do it like this:

    List<string> values = new List<string> {"a", "a", "d","a", "a", "c", "a"};

    int count = values.FindAll(id => id == "a").Count();
link|improve this answer
This would only find out the number of "a" values. Remember that he's looking for 5 values that match - but the values can be anything. – Michael Burr Mar 3 '10 at 23:58
Ahh yes, I see now. I had to re-read his question. Thanks – Jason Heine Mar 4 '10 at 1:47
feedback

You can group the similar items and find it any group have five or more

from word in new [] { "a", "a", "a", "b", "a", "a", "b" }
group word by word into wordGroup
where wordGroup.Count() >= 5
select wordGroup.Key
link|improve this answer
feedback

Sort the array, after that you are sure that if there are five or more of the same value, the middle value is one of them. Count how many:

Array.Sort(words);
int cnt = 0;
Array.ForEach(words, s => { if (s == words[3]) cnt++; });
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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