forked from jfarmer/exercises-js-fundamentals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprintInvertedSolidRightTriangle.js
61 lines (55 loc) · 1.52 KB
/
printInvertedSolidRightTriangle.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
57
58
59
60
61
/*
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 an "inverted" solid right triangle `height`
* characters tall consisting of `#` characters.
*
* Note, this PRINTS a triangle, it does not RETURN a triangle.
*
* @example
* printInvertedSolidRightTriangle(3); // Prints the following:
* ###
* ##
* #
*
* @example
* printInvertedSolidRightTriangle(4); // Prints the following:
* ####
* ###
* ##
* #
*
* @param {number} height - The height of the triangle to print
*/
function printInvertedSolidRightTriangle(height) {
/*
Reflect: given `height`...
1. How many lines to we want to print?
2. How many characters should be on each line?
*/
for (let i = 0; i < height; i++) {
let numChars = _____;
helpers.printCountTimes('#', numChars);
helpers.printNewLine();
}
}
/**
* For testing purposes, prints a diagram of the given height.
*/
function invertedSolidRightTriangleTest(height) {
console.log('');
console.log(`Printing a INVERTED SOLID RIGHT TRIANGLE of height ${height}:`);
printInvertedSolidRightTriangle(height);
}
if (require.main === module) {
invertedSolidRightTriangleTest(1);
invertedSolidRightTriangleTest(2);
invertedSolidRightTriangleTest(4);
invertedSolidRightTriangleTest(6);
invertedSolidRightTriangleTest(10);
}
module.exports = printInvertedSolidRightTriangle;