Python では、リスト要素を検索するときに開始インデックスと終了インデックスを指定できます。
>>> l = ['a', 'b', 'a']
>>> l.index('a')
0
>>> l.index('a', 1) # begin at index 1
2
>>> l.index('a', 1, 3) # begin at index 1 and stop before index 3
2
>>> l.index('a', 1, 2) # begin at index 1 and stop before index 2
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: 'a' is not in list
Rubyに同等の機能はありますか? 配列スライスを使用できますが、中間オブジェクトが必要なため、効率が悪いようです。