Skip to content

Instantly share code, notes, and snippets.

@LawrenceHwang
Created May 30, 2018 04:47
Show Gist options
  • Select an option

  • Save LawrenceHwang/426cb44113dfbf4df5ce4f2552c1f50b to your computer and use it in GitHub Desktop.

Select an option

Save LawrenceHwang/426cb44113dfbf4df5ce4f2552c1f50b to your computer and use it in GitHub Desktop.
[PowerShell] Recursion vs Iteration
# This is iteration
9:42 PM> Measure-Command -Expression {FibI 20}
...
TotalSeconds : 0.0093811
TotalMilliseconds : 9.3811
# This is recursion
9:43 PM> Measure-Command -Expression {FibR 20}
...
TotalSeconds : 22.7287975
TotalMilliseconds : 22728.7975
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment