If a is the array, I want a.index(a.max), but something more Ruby-like. It should be obvious, but I'm having trouble finding the answer at so and elsewhere. Obviously, I am new to Ruby.
Cary
|
feedback
|
|
For Ruby 1.8.7 or above:
It does one iteration. Not entirely the most semantic thing ever, but if you find yourself doing this a lot, I would wrap it in an | |||||||||||||
feedback
|
|
In ruby 1.9.2 I can do this;
| |||
|
feedback
|
At least it's Ruby-like :) | |||||
feedback
|
|
If you do an | |||||
feedback
|
.max_indexmember to theArrayclass. Here's an example of extendingStringorIntegerwith a custom member: hawkee.com/snippet/1260 – bta Jan 29 '10 at 22:58