Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Staircase Steps Challenge

Staircase Python Challenge

A child is running up a staircase with N steps, and can hop 1 step, 2 steps or 3 steps at a time.

Write a Python program that prompts the user to enter the Number of steps in a staircase. The program should then provide the following information:

1) The total number of possible ways the child can run up the stairs.

2) A breakdown of all the possible combinations to Climb the stairs.

For example, a staircase with three steps:

There are 4 ways to climb.

Possible ways:

1 1 1

1 2

2 1

3

Expected Output

Enter the number of steps: 6
Number of ways to climb:  24
All possible ways to climb: 
[1, 1, 1, 1, 1, 1]
[1, 1, 1, 1, 2]
[1, 1, 1, 2, 1]
[1, 1, 1, 3]
[1, 1, 2, 1, 1]
[1, 1, 2, 2]
[1, 1, 3, 1]
[1, 2, 1, 1, 1]
[1, 2, 1, 2]
[1, 2, 2, 1]
[1, 2, 3]
[1, 3, 1, 1]
[1, 3, 2]
[2, 1, 1, 1, 1]
[2, 1, 1, 2]
[2, 1, 2, 1]
[2, 1, 3]
[2, 2, 1, 1]
[2, 2, 2]
[2, 3, 1]
[3, 1, 1, 1]
[3, 1, 2]
[3, 2, 1]
[3, 3]

Source Code

## Function to find possible ways to climb the stairs
def find_steps(n, steps):
    if n == 0:
        return [[]]
    if n 

In this program, "find_steps" is a recursive function that finds all the possible ways to climb the stairs. It does this by subtracting each possible step from the total number of steps until it reaches zero (which means it found a way) or less than zero (which means the way is not possible). The “count_ways” function simply counts the number of ways found by the "find_steps" function. The program then asks the user to input the number of steps and prints out the number of ways and all the possible ways to climb the stairs.

To keep practicing Python, check out other Practity projects

The post Staircase Steps Challenge appeared first on Python and Excel Projects for practice.



This post first appeared on Tips, News, Updates For Python And Excel Students, please read the originial post: here

Share the post

Staircase Steps Challenge

×

Subscribe to Tips, News, Updates For Python And Excel Students

Get updates delivered right to your inbox!

Thank you for your subscription

×