Change the function so it'll create an upside down stair according to the inputted number
Example:
Input:
5
Output:
*****
****
***
**
*
Input:
10
Output:
**********
*********
********
*******
******
*****
****
***
**
*
- Git clone the repo
- run
npm install
- Change the function in
main.ts
- run the test
npm test