100 - Build Tower
Q.
Build Tower
Build Tower by the following given argument:
number of floors (integer and always greater than 0).
Tower block is represented as *
Python: return a list;
JavaScript: returns an Array;
C#: returns a string[];
PHP: returns an array;
C++: returns a vector;
Haskell: returns a [String];
Ruby: returns an Array;
Lua: returns a Table;
Have fun!
for example, a tower of 3 floors looks like below
[
' * ',
' *** ',
'*****'
]
and a tower of 6 floors looks like below
[
' * ',
' *** ',
' ***** ',
' ******* ',
' ********* ',
'***********'
]
A)
function towerBuilder(nFloors) {
// build here
let res = [];
for (let i = 1; i <= nFloors ; i++) {
let str = '*'.repeat((2*i)-1)
let space = ' '.repeat(((2*nFloors)-(2*i))/2)
res.push(space+str+space)
}
return res
}
Author And Source
이 문제에 관하여(100 - Build Tower), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@developerjhp/알고리즘-100-Build-Tower
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
function towerBuilder(nFloors) {
// build here
let res = [];
for (let i = 1; i <= nFloors ; i++) {
let str = '*'.repeat((2*i)-1)
let space = ' '.repeat(((2*nFloors)-(2*i))/2)
res.push(space+str+space)
}
return res
}
Author And Source
이 문제에 관하여(100 - Build Tower), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@developerjhp/알고리즘-100-Build-Tower저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)