HackerRank - Staircase

https://www.hackerrank.com/challenges/staircase/problem

내 풀이

function staircase(n: number): void {
    // Write your code here
    for(let i = 0 ; i < n ; i++){
        console.log(' '.repeat(n-(i+1)).concat('#'.repeat(i+1)));
    }
}
``

좋은 웹페이지 즐겨찾기