Calculate and report on the resources necessary to complete the maze.

This commit is contained in:
Nicholas Warzin 2023-08-22 17:29:47 -04:00
parent 181e42fe15
commit d0bf830f02

View File

@ -181,8 +181,9 @@ overlook.map(row => {
rowTotal ++;
});
console.log(count);
console.log(total);
console.log(`total leaf-occupying spaces: ${count}`);
console.log(`which is ${(count*5)} actual leaf cubes at a height of 5`);
console.log(`and if 3456 leaves fit in a double bin, we need ${(((count*5)/3456).toFixed(2))} full double-bins to do the overlook`);