Created
November 15, 2018 00:11
-
-
Save matugm/dfec31607bf8aaa4a97b18a386e4ef5e to your computer and use it in GitHub Desktop.
Revisions
-
matugm created this gist
Nov 15, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ require 'benchmark' N = 1_000_000 Benchmark.bm(10) { |x| 0.step(to: 16) { |size| data = (1..size).zip(Array.new(size)) x.report(size) { i = 0 while i < N Hash[data] i += 1 end } } }