my_array = [0, 1, 2, nil, nil, 3, nil, 4, nil]
should return [0,1,2,5,7]
via @the tin man: state.map.with_index { |e, i| (e.nil?) ? nil : i }.compact
unfortunately, that only works with 1.9
should return via @the tin man: state.map.with_index { |e, i| (e.nil?) ? nil : i }.compact unfortunately, that only works with 1.9 |
||||
|
This gets there with v1.9.2:
The question changed while I was answering, so this matches the question as it stands now:
It's just a case of switching the ternary operator's values around. And, once again, the question changed. With 1.8.7 and 1.9.2:
|
|||||||||
|
|
I'm sure there's a quicker way, but:
|
|||
|
|
arenil – RichardTheKiwi Jan 31 '11 at 3:38