Created
April 3, 2017 05:27
-
-
Save kklimuk/baf24de2bc35579917a72c06c7ecee14 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' | |
Benchmark.bm do |measurer| | |
calculator = FibonacciCalculator.new | |
measurer.report 'with memoization' do | |
10.times { calculator.memoized_calculate(35) } | |
end | |
measurer.report 'without memoization' do | |
10.times { calculator.calculate(35) } | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment