Objective
Write a program that draws a centered pyramid of # characters whose height is given as the single argument.
Steps
$ ./pyramid 3 | cat -e
#$ ###$ #####$
$ ./pyramid 1 | cat -e
#$
$ ./pyramid | cat -e
wrong number of arguments$
Expected files
Allowed functions

Objective
Write a program that draws a centered pyramid of # characters whose height is given as the single argument.
Steps
$ ./pyramid 3 | cat -e
#$ ###$ #####$
$ ./pyramid 1 | cat -e
#$
$ ./pyramid | cat -e
wrong number of arguments$
Expected files
Allowed functions

Tests
Run the tests to grade your code