mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
4 lines
106 B
Ruby
4 lines
106 B
Ruby
|
str1 = "あ" * 1024 + "い" # not single byte optimizable
|
||
|
str2 = "い"
|
||
|
100_000.times { str1.index(str2) }
|