Skip to content

Instantly share code, notes, and snippets.

@pritchie
Created June 9, 2010 19:54
Show Gist options
  • Save pritchie/432080 to your computer and use it in GitHub Desktop.
Save pritchie/432080 to your computer and use it in GitHub Desktop.
def f n;n<3?1:f(n-1)+f(n-2);end;def fibsum n;(1..n).inject{|s,i|s+=f i};end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment