vote up 0 vote down star
1

If you have a string of "1,2,3,1,5,7" you can put this in an array or hash table or whatever is deemed best.

How do you determine that all value are the same? In the above example it would fail but if you had "1,1,1" that would be true.

flag

79% accept rate
Where is the "Please do my homework" tag? – Sergio Jul 6 at 13:54
I think this question has been asked before... – Rorschach Jul 6 at 14:10

5 Answers

vote up 5 vote down check

This can be done nicely using lambda expressions.

For an array, named arr:

var allSame = Array.TrueForAll(arr, x => x == arr[0]);

For an list (List<T>), named lst:

var allSame = lst.TrueForAll(x => x == lst[0]);

And for an iterable (IEnumerable<T>), named col:

var first = col.First();
var allSame = col.All(x => x == first);

Note that these methods don't handle empty arrays/lists/iterables however. Such support would be trivial to add however.

link|flag
Almost, but does not handle empty arrays... – Martin Randall Jul 6 at 14:07
@Martin: It isn't clear in the question whether that's a requirement or not. Of course, it would be very simple to support. – Noldorin Jul 6 at 14:09
Linq is not an option for this project unfortunately – Jon Jul 6 at 14:10
1  
@Jon: First method (for arrays) doesn't require LINQ though. :) – Noldorin Jul 6 at 14:11
vote up 1 vote down

Not as efficient as a simple loop (as it always processes all items even if the result could be determined sooner), but:

if (new HashSet<string>(numbers.Split(',')).Count == 1) ...
link|flag
vote up 1 vote down

I think using List<T>.TrueForAll would be a slick approach.

http://msdn.microsoft.com/en-us/library/kdxe4x4w.aspx

link|flag
vote up 3 vote down

How about something like...

string numArray = "1,1,1,1,1";
return numArrray.Split( ',' ).Distinct().Count() <= 1;
link|flag
Linq is not an option for this project unfortunately – Jon Jul 6 at 14:10
vote up 5 vote down

Iterate through each value, store the first value in a variable and compare the rest of the array to that variable. The instant one fails, you know all the values are not the same.

link|flag
Nice one, I can almost see the code! – Secko Jul 6 at 14:16

Your Answer

Get an OpenID
or

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