-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathprintPlus.js
65 lines (58 loc) · 1.49 KB
/
printPlus.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
62
63
64
65
/*
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 odd integer of `height`, prints "plus" pattern `height` characters
* tall consisting of `#` characters.
*
* Note:
* 1. The input must be an ODD integer or else printing a "plus" pattern
* isn't possible since there's no "middle point" for the two lines to cross.
* 2. This PRINTS a plus pattern, it does not RETURN anything.
*
* @example
* printPlus(3); // Prints the following:
* #
* ###
* #
*
* @example
* printPlus(5); // Prints the following:
* #
* #
* #####
* #
* #
*
* @param {number} height - The height of the plus symbol to print. It must be
* an odd integer.
*/
function printPlus(height) {
// If height is not an odd integer, throw an error.
if (!Number.isInteger(height) || height % 2 !== 1) {
throw new Error(`height must be an odd integer, received: ${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 plusPrintTest(height) {
console.log('');
console.log(`Printing a PLUS SYMBOL of height ${height}:`);
printPlus(height);
}
if (require.main === module) {
plusPrintTest(1);
plusPrintTest(3);
plusPrintTest(5);
plusPrintTest(7);
plusPrintTest(9);
}
module.exports = printPlus;