-
Notifications
You must be signed in to change notification settings - Fork 20
Open
Labels
Description
Directions
Write a method or function that accepts a positive number N. The function should print a step shape with N levels using the # character. Make sure the step has spaces on t right hand side. Make sure to use methods and functions where necessory
You can code this with any language of your choice!
Examples
steps(2)
'# '
'##'
steps(3)
'# '
'## '
'###'