Last active
December 27, 2019 18:16
-
-
Save pedromcunha/afb098f294cafad0f9f8e5e97429f0d6 to your computer and use it in GitHub Desktop.
Advent of code Day 3.1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const wire1 = "R993,U847,R868,D286,L665,D860,R823,U934,L341,U49,R762,D480,R899,D23,L273,D892,R43,U740,L940,U502,L361,U283,L852,D630,R384,D758,R655,D358,L751,U970,R72,D245,L188,D34,R355,U373,L786,U188,L304,D621,L956,D839,R607,U279,L459,U340,R412,D901,L929,U256,R495,D462,R369,D138,R926,D551,L343,U237,L434,U952,R421,U263,L663,D694,R687,D522,L47,U8,L399,D930,R928,U73,L581,U452,R80,U610,L998,D797,R584,U772,L521,U292,L959,U356,L940,D894,R774,U957,L813,D650,L891,U309,L254,D271,R791,D484,L399,U106,R463,D39,L210,D154,L380,U86,L136,D228,L284,D267,R195,D727,R739,D393,R395,U703,L385,U483,R433,U222,L945,D104,L605,D814,L656,U860,L474,D672,L812,U789,L29,D256,R857,U436,R927,U99,R171,D727,L244,D910,L347,U789,R49,U598,L218,D834,L574,U647,L185,U986,L273,D363,R848,U531,R837,U433,L795,U923,L182,D915,R367,D347,R867,U789,L776,U568,R969,U923,L765,D589,R772,U715,R38,D968,L845,D327,R721,D928,R267,U94,R763,U799,L946,U130,L649,U521,L569,D139,R584,D27,L823,D918,L450,D390,R149,U237,L696,U258,L757,U810,L216,U202,L966,U157,R702,D623,R740,D560,R932,D587,L197,D56,R695,U439,R655,U576,R695,D176,L800,D374,R806,U969,L664,U216,L170,D415,R485,U188,L444,D613,R728,U508,L644,U289,R831,D978,R711,U973,R3,U551,R377,U114,L15,U812,R210,D829,L536,D883,L843,D427,L311,D680,R482,D69,R125,D953,L896,D85,R376,D683,R374,U415,L3,U843,L802,D124,R299,U345,L696,D276,L87,D98,R619,D321,R348,D806,L789,U657,R590,D747,L477,U251,R854,D351,L82,D982,R906,D94,R285,U756,L737,D377,L951,U126,L852,D751,L946,U696,L44,D709,R851,D364,R222".split(",") | |
const wire2 = "L1002,D658,L695,U170,L117,U93,R700,D960,L631,U483,L640,D699,R865,U886,L59,D795,R265,U803,R705,D580,R519,U685,R126,D888,R498,U934,L980,U734,L91,D50,R805,U197,R730,U363,R337,U594,L666,U702,L237,D140,L72,U980,L167,U598,L726,U497,L340,D477,L304,U945,R956,U113,L43,D4,R890,D316,R916,D644,R704,D398,L905,U361,R420,U31,L317,U338,R703,D211,R27,D477,L746,U813,R705,U191,L504,D434,R697,D945,R835,D374,L512,U269,L299,U448,R715,U363,R266,U720,L611,U672,L509,D983,L21,U895,L340,D794,R528,U603,R154,D610,L582,U420,L696,U599,R16,U610,L134,D533,R156,D338,L761,U49,L335,D238,R146,U97,L997,U545,L896,D855,L653,D789,R516,D371,L99,D731,R868,D182,R535,D35,R190,D618,R10,D694,L567,D17,R356,U820,R671,D883,R807,U218,L738,U225,L145,D954,R588,U505,R108,U178,R993,D788,R302,D951,R697,D576,L324,U930,R248,D245,R622,U323,R667,U876,L987,D411,L989,U915,R157,D67,L968,U61,R274,D189,L53,D133,R617,D958,L379,U563,L448,D412,R940,U12,R885,U121,R746,U215,R420,U346,L469,D839,R964,D273,R265,D3,L714,D224,L177,U194,L573,U511,L795,U299,L311,U923,R815,U594,L654,U326,L547,U547,R467,D937,L174,U453,R635,D551,L365,U355,R658,U996,R458,D623,R61,U181,R340,U163,L329,D496,L787,D335,L37,D565,R318,U942,R198,U85,R328,D826,R817,D118,R138,D29,L434,D427,R222,D866,L10,D152,R822,D779,L900,D307,R723,D363,L715,D60,R661,U680,R782,U789,R311,D36,R425,U498,L910,D546,R394,D52,R803,D168,L6,U769,R856,D999,L786,U695,R568,U236,R472,U291,L530,U314,L251,D598,R648,D475,L132,D236,L915,D695,L700,U378,L685,D240,R924,D977,R627,U824,L165".split(",") | |
class Plotter { | |
constructor() { | |
this.plots = { | |
wire1: {}, | |
wire2: {}, | |
intersects: {} | |
} | |
} | |
plotWires(wire1, wire2) { | |
let position = { | |
x: 0, | |
y: 0 | |
} | |
wire1.forEach((point) => this.plot(point, position, this.plots.wire1)) | |
position = { | |
x: 0, | |
y: 0 | |
} | |
wire2.forEach((point) => this.plot(point, position, this.plots.wire2)) | |
Object.keys(this.plots.wire1).forEach(plot => { | |
if (this.plots.wire2[plot] && plot != '0,0') { | |
let point = plot.split(",") | |
point = { | |
x: point[0], | |
y: point[1] | |
} | |
const distance = Math.abs(point.x-0) + Math.abs(point.y-0); | |
if (!this.plots.intersects[distance]) { | |
this.plots.intersects[distance] = point | |
} | |
} | |
}) | |
let closest = Math.min(...Object.keys(this.plots.intersects)) | |
console.log(this.plots.intersects[closest], closest) | |
} | |
plot(point, position, points) { | |
const direction = point[0] | |
const value = Number(point.slice(1, point.length)) | |
switch (direction) { | |
case "R": | |
for (var i = 0; i < value; i++) { | |
points[position.x + "," + position.y] = true | |
position.x += 1 | |
} | |
break | |
case "U": | |
for (var i = 0; i < value; i++) { | |
points[position.x + "," + position.y] = true | |
position.y += 1 | |
} | |
break | |
case "D": | |
for (var i = 0; i < value; i++) { | |
points[position.x + "," + position.y] = true | |
position.y -= 1 | |
} | |
break | |
case "L": | |
for (var i = 0; i < value; i++){ | |
points[position.x + "," + position.y] = true | |
position.x -= 1 | |
} | |
break | |
} | |
} | |
} | |
const wirePlotter = new Plotter() | |
wirePlotter.plotWires(wire1, wire2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment