Skip to content

Instantly share code, notes, and snippets.

@kklimuk
Created April 3, 2017 05:27
Show Gist options
  • Save kklimuk/baf24de2bc35579917a72c06c7ecee14 to your computer and use it in GitHub Desktop.
Save kklimuk/baf24de2bc35579917a72c06c7ecee14 to your computer and use it in GitHub Desktop.
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