Created
November 15, 2018 00:11
-
-
Save matugm/dfec31607bf8aaa4a97b18a386e4ef5e to your computer and use it in GitHub Desktop.
This file contains 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 characters
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 | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment