-
Notifications
You must be signed in to change notification settings - Fork 73
/
printHollowPyramid.js
56 lines (50 loc) · 1.22 KB
/
printHollowPyramid.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
Require the printHelpers module, which allows us to do things like print
characters without always inserting a new line, print characters multiple
times, etc.
*/
let helpers = require('../printHelpers');
/**
* Given an integer `height`, prints a solid pyramid `height` characters tall
* consisting of `#` characters.
*
*
* Note, this PRINTS a pyramid, it does not RETURN a pyramid.
*
* @example
* printHollowPyramid(2); // Prints the following:
* #
* ###
*
* @example
* printHollowPyramid(5); // Prints the following:
* #
* # #
* # #
* # #
* #########
*
* @param {number} height - The height of the pyramid to print
*/
function printHollowPyramid(height) {
for (let i = 0; i < height; i++) {
// This is your job. :)
helpers.printNewLine();
}
}
/**
* For testing purposes, prints a diagram of the given height.
*/
function hollowPyramidPrintTest(height) {
console.log('');
console.log(`Printing a HOLLOW PYRAMID of height ${height}:`);
printHollowPyramid(height);
}
if (require.main === module) {
hollowPyramidPrintTest(1);
hollowPyramidPrintTest(2);
hollowPyramidPrintTest(3);
hollowPyramidPrintTest(6);
hollowPyramidPrintTest(8);
}
module.exports = printHollowPyramid;