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.
|
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.
|
||||
|
|
|
This can be done nicely using lambda expressions. For an array, named
For an list (
And for an iterable (
Note that these methods don't handle empty arrays/lists/iterables however. Such support would be trivial to add however. |
||||||||||
|
|
|
Not as efficient as a simple loop (as it always processes all items even if the result could be determined sooner), but:
|
||
|
|
|
|
I think using |
||
|
|
|
|
How about something like...
|
||
|
|
|
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. |
||
|