Created
February 8, 2015 14:32
-
-
Save MartinHeimbring/ad28bfd9e35adb13e634 to your computer and use it in GitHub Desktop.
Revisions
-
MartinHeimbring created this gist
Feb 8, 2015 .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,15 @@ require 'benchmark' stringAZ = Hash[("a".."z").to_a.zip((1..26).to_a)] symbolAZ = Hash[(:a..:z).to_a.zip((1..26).to_a)] string_time = Benchmark.realtime do 100_000.times{stringAZ["r"]} end symbol_time = Benchmark.realtime do 100_000.times{symbolAZ[:r]} end puts "String time: #{string_time} seconds." puts "Symbol time: #{symbol_time} seconds."