Skip to content

Instantly share code, notes, and snippets.

@mindaslab
Created October 13, 2015 14:50
Show Gist options
  • Save mindaslab/3813d222e09e414dac13 to your computer and use it in GitHub Desktop.
Save mindaslab/3813d222e09e414dac13 to your computer and use it in GitHub Desktop.
memo = []
(0..n).each do |i|
memo[i] = i < 2 ? i : memo[i-1] + memo[i-2]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment