Added day 13, part 1 only
This commit is contained in:
parent
a7cb0c3066
commit
ab35e7136e
46
day13/part1.js
Normal file
46
day13/part1.js
Normal file
@ -0,0 +1,46 @@
|
||||
var input = 1352;
|
||||
[targetx, targety] = [31, 39];
|
||||
|
||||
|
||||
toBin = (number)=>(Number(number).toString(2).split("").map((a)=>(parseInt(a))));
|
||||
evenSum = (parts)=>(parts.reduce((a, b)=>(a+b))%2 == 0);
|
||||
checkCoord = (x, y)=>(evenSum(toBin(((x*x + 3*x + 2*x*y + y + y*y) + input))));
|
||||
|
||||
var previous = [];
|
||||
|
||||
function getNextCoords(x, y){
|
||||
var next = [];
|
||||
if(x > 0){
|
||||
if(checkCoord(x-1, y)){
|
||||
next.push([x-1, y]);
|
||||
}
|
||||
}
|
||||
if(y > 0){
|
||||
if(checkCoord(x, y-1)){
|
||||
next.push([x, y-1]);
|
||||
}
|
||||
}
|
||||
if(checkCoord(x+1, y)){
|
||||
next.push([x+1, y]);
|
||||
}
|
||||
if(checkCoord(x, y+1)){
|
||||
next.push([x, y+1]);
|
||||
}
|
||||
next = next.filter((pair)=>(previous.indexOf(pair.join(",")) == -1));
|
||||
next.forEach((pair)=>{previous.push(pair.join(","))});
|
||||
return next;
|
||||
}
|
||||
|
||||
var coords = [[1,1]];
|
||||
|
||||
function getNextAllCoords(){
|
||||
return coords.map((pair)=>(getNextCoords(pair[0], pair[1]))).reduce((a, b)=>(a.concat(b)), []);
|
||||
}
|
||||
|
||||
var i = 0;
|
||||
while(coords.filter(([x,y])=>((x == targetx) && (y == targety))).length == 0){
|
||||
coords = getNextAllCoords();
|
||||
i++;
|
||||
console.log(i);
|
||||
}
|
||||
console.log("Steps: ", i);
|
Loading…
x
Reference in New Issue
Block a user