1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-10-29 22:17:23 +01:00
programming-challenges/challenges/print-pyramid/README.md

609 B

print-pyramid

Created by @theoludwig on 21 September 2021.

Instructions

Display a pyramid of stars (*) whose height is given and in the right order (normal or reverse).

Input

  • Line 1: The string : normal or reverse to determine how to show the pyramid.
  • Line 2: The integer : height of the pyramid.

Examples

See the test folder for examples of input/output.

Example 1

Input

normal
3

Output

  *
 ***
*****

Example 2

Input

reverse
3

Output

*****
 ***
  *