What's the best way (in terms of both idiom and efficiency) to find the index of the first non-nil value in an array?
I've come up with first_non_null_index = array.index(array.dup.compact[0])...but is there a better way?
|
What's the best way (in terms of both idiom and efficiency) to find the index of the first non-nil value in an array? I've come up with |
|||
|
|
|
Ruby 1.9 has the
|
|||||||
|
|
I think the best answer is in the question only. Only change
Consider following example
|
|||
|
|