Post History
Challenge Make a program that takes input of an integer that's $n > 1$ and print out a staircase using a specific character for stair basing (hashes (#) for demonstration; you can use spaces,...
#3: Post edited
> This challenge is currently in the beta release, meaning if given enough positivity, it will remain here as a full challenge. Otherwise if the challenge reaches negative aspects, it will be deleted and reused on the sandbox. If there are anything unclear yet, please head over to [the sandboxed post](https://codegolf.codidact.com/posts/283858/) to fix any issues.- # Challenge
- - Make a program that takes input of an integer that's $n > 1$ and print out a staircase using a specific character for stair basing (hashes (`#`) for demonstration; you can use spaces, but not tabs or other whitespace characters), slashes (`/`), and underscores (`_`).
- - The basis of the staircase is having the hashes as to act like the stair supporters, in other words, bricks. The bottom stair starts with a slash then as we go higher, an underscore at the spot right next and above the
- - Shortest program in each language wins!
- # Test Cases
- ```none
- n = 2
- _/
- /##
- n = 3
- _/
- _/##
- /####
- n = 6
- _/
- _/##
- _/####
- _/######
- _/########
- /##########
- ```
- # Challenge
- - Make a program that takes input of an integer that's $n > 1$ and print out a staircase using a specific character for stair basing (hashes (`#`) for demonstration; you can use spaces, but not tabs or other whitespace characters), slashes (`/`), and underscores (`_`).
- - The basis of the staircase is having the hashes as to act like the stair supporters, in other words, bricks. The bottom stair starts with a slash then as we go higher, an underscore at the spot right next and above the
- - Shortest program in each language wins!
- # Test Cases
- ```none
- n = 2
- _/
- /##
- n = 3
- _/
- _/##
- /####
- n = 6
- _/
- _/##
- _/####
- _/######
- _/########
- /##########
- ```
#2: Post edited
- > This challenge is currently in the beta release, meaning if given enough positivity, it will remain here as a full challenge. Otherwise if the challenge reaches negative aspects, it will be deleted and reused on the sandbox. If there are anything unclear yet, please head over to [the sandboxed post](https://codegolf.codidact.com/posts/283858/) to fix any issues.
- # Challenge
- Make a program that takes input of an integer that's $n > 1$ and print out a staircase using a specific character for stair basing (hashes (`#`) for demonstration; you can use spaces, but not tabs), slashes (`/`), and underscores (`_`).- - The basis of the staircase is having the hashes as to act like the stair supporters, in other words, bricks. The bottom stair starts with a slash then as we go higher, an underscore at the spot right next and above the
- - Shortest program in each language wins!
- # Test Cases
- ```none
- n = 2
- _/
- /##
- n = 3
- _/
- _/##
- /####
- n = 6
- _/
- _/##
- _/####
- _/######
- _/########
- /##########
- ```
- > This challenge is currently in the beta release, meaning if given enough positivity, it will remain here as a full challenge. Otherwise if the challenge reaches negative aspects, it will be deleted and reused on the sandbox. If there are anything unclear yet, please head over to [the sandboxed post](https://codegolf.codidact.com/posts/283858/) to fix any issues.
- # Challenge
- - Make a program that takes input of an integer that's $n > 1$ and print out a staircase using a specific character for stair basing (hashes (`#`) for demonstration; you can use spaces, but not tabs or other whitespace characters), slashes (`/`), and underscores (`_`).
- - The basis of the staircase is having the hashes as to act like the stair supporters, in other words, bricks. The bottom stair starts with a slash then as we go higher, an underscore at the spot right next and above the
- - Shortest program in each language wins!
- # Test Cases
- ```none
- n = 2
- _/
- /##
- n = 3
- _/
- _/##
- /####
- n = 6
- _/
- _/##
- _/####
- _/######
- _/########
- /##########
- ```
#1: Initial revision
Stairs? Stairs! Stairs.
> This challenge is currently in the beta release, meaning if given enough positivity, it will remain here as a full challenge. Otherwise if the challenge reaches negative aspects, it will be deleted and reused on the sandbox. If there are anything unclear yet, please head over to [the sandboxed post](https://codegolf.codidact.com/posts/283858/) to fix any issues. # Challenge - Make a program that takes input of an integer that's $n > 1$ and print out a staircase using a specific character for stair basing (hashes (`#`) for demonstration; you can use spaces, but not tabs), slashes (`/`), and underscores (`_`). - The basis of the staircase is having the hashes as to act like the stair supporters, in other words, bricks. The bottom stair starts with a slash then as we go higher, an underscore at the spot right next and above the - Shortest program in each language wins! # Test Cases ```none n = 2 _/ /## n = 3 _/ _/## /#### n = 6 _/ _/## _/#### _/###### _/######## /########## ```