Skip to content

Instantly share code, notes, and snippets.

@mjstromberg
Created October 13, 2019 23:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mjstromberg/c9316487d21da0222701b25c956e4377 to your computer and use it in GitHub Desktop.
Save mjstromberg/c9316487d21da0222701b25c956e4377 to your computer and use it in GitHub Desktop.
function getUniqueStepsByOneOrTwo(n) {
if (n < 0) {
return 0;
} else if (n === 0) {
return 1;
} else {
return getUniqueStepsByOneOrTwo(n - 1) + getUniqueStepsByOneOrTwo(n - 2);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment