-
Notifications
You must be signed in to change notification settings - Fork 0
/
spiral.js
30 lines (30 loc) · 1.15 KB
/
spiral.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
function drawSpiral(q) {
if (q > 3) {
var remaining = (q % 4) + 1;
switch (remaining) {
case 1:
console.log('# '.repeat(q) + ' #'.repeat(q)+"\n");
break;
case 2:
console.log('# '.repeat(q) + '###' + ' #'.repeat(q - 1)+"\n");
console.log('# '.repeat(q) + ' #' + ' #'.repeat(q - 1)+"\n");
break;
case 3:
console.log('# '.repeat(q) + '####' + ' #'.repeat(q - 1)+"\n");
console.log('# '.repeat(q) + '# #' + ' #'.repeat(q - 1)+"\n");
console.log('# '.repeat(q) + ' #' + ' #'.repeat(q - 1)+"\n");
break;
case 4:
console.log('# '.repeat(q) + '#####' + ' #'.repeat(q - 1)+"\n");
console.log('# '.repeat(q) + '# #' + ' #'.repeat(q - 1)+"\n");
console.log('# '.repeat(q) + '### #' + ' #'.repeat(q - 1)+"\n");
console.log('# '.repeat(q) + ' #' + ' #'.repeat(q - 1)+"\n");
break;
}
}
for (var i = q; i > 1; i--) {
console.log('# '.repeat(i - 1) + '#'.repeat((q - i) * 4 + 4) + ' #'.repeat(i - 1)+"\n");
console.log('# '.repeat(i - 1) + ' '.repeat((q - i) * 4 + 4) + ' #'.repeat(i - 1)+"\n");
}
console.log('#'.repeat(q));
}