ruby/benchmark/hash_aref_fix.rb

5 строки
95 B
Ruby

h = {}
nums = (1..26).to_a
nums.each { |i| h[i] = i }
200_000.times { nums.each { |s| h[s] } }