Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Day 12 #25

Closed
vaskoz opened this issue Sep 2, 2018 · 0 comments
Closed

Day 12 #25

vaskoz opened this issue Sep 2, 2018 · 0 comments
Assignees

Comments

@vaskoz
Copy link
Owner

vaskoz commented Sep 2, 2018

Good morning! Here's your coding interview problem for today.

This problem was asked by Amazon.

There exists a staircase with N steps, and you can climb up either 1 or 2 steps at a time. Given N, write a function that returns the number of unique ways you can climb the staircase. The order of the steps matters.

For example, if N is 4, then there are 5 unique ways:

1, 1, 1, 1
2, 1, 1
1, 2, 1
1, 1, 2
2, 2
What if, instead of being able to climb 1 or 2 steps at a time, you could climb any number from a set of positive integers X? For example, if X = {1, 3, 5}, you could climb 1, 3, or 5 steps at a time.

@vaskoz vaskoz self-assigned this Sep 2, 2018
@vaskoz vaskoz mentioned this issue Sep 2, 2018
@vaskoz vaskoz closed this as completed in #26 Sep 2, 2018
@vaskoz vaskoz mentioned this issue Jan 6, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant