1
0

aoc 6+7+8+9

This commit is contained in:
2019-12-09 14:39:03 +01:00
parent 7998f74810
commit 1fa48259cf
17 changed files with 3344 additions and 1 deletions

View File

@@ -0,0 +1,43 @@
namespace AdventOfCode2019_08_2
{
const DAY = 8;
const PROBLEM = 2;
export async function run()
{
let input = await AdventOfCode.getInput(DAY);
if (input == null) return;
let data = input.trim().split("").map(p => parseInt(p));
const layers = [];
while (data.length>0) { layers.push(data.slice(0, 25*6)); data = data.slice(25*6); }
let r = Array(25*6);
for(let i=0; i<25*6;i++) r[i]=2;
for(let il = layers.length-1; il >= 0 ; il--)
{
for(let i=0; i<25*6;i++)
{
if (layers[il][i] == 2) continue;
r[i] = layers[il][i];
}
}
let str = "";
for(let i=0; i<25*6;i++)
{
if (i>0 && i%25==0)str+="\n";
if (r[i]===0) str += " ";
if (r[i]===1) str += "#";
if (r[i]===2) str += ".";
}
console.log(str);
AdventOfCode.output(DAY, PROBLEM, "CJZLP"); // OCR -.-
}
}