Day 3: Gear Ratios
This was an enjoyable but time-intensive thing to do this Sunday. Ironically the easier part one took me longer, as I had a bug where having two of the same number on one line caused an issue, which was a bit difficult to find and resolve. I already feel like I have more flow with coding these problems and have improved and learnt a lot.
Once that was done though, part two was fairly quick to solve although mentally intensive. The code for that is inelegant and verbose because I basically manually check the * characters for being potential gears manually in each direction to run the recursive steps afterwards. It would be better to condense that to a single flexible function. But, got the answer now and not going to refactor.
Later after solving the puzzles, I checked out a video of a guy solving it in Rust. Watched maybe half and hated his approach, and didn't understand a lot of the Rust code. I think he was using vector maps. I realise that my way of approaching these problems is probably very JS orientated for someone who comes from a web background. There are likely way more elegant and efficient ways to tackle the problems, although in a way I found at least the start of how I tackled it nicer than the other guys approach. For sure I am learning a lot and this is great.
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
const partNumbers = [];
const gearRatios = [];
// var cumTot = 0;
function isSymbol(char) {
var isSymbol = true;
// console.log('checking char', char)
const isNum = !isNaN(char);
if( isNum ) {
isSymbol = false;
}
if( char === '.' ) {
isSymbol = false;
}
if( isSymbol ) {
return true;
} else {
return false;
}
}
const schemaLines = engineSchema.split(/\n/);
// console.log(schemaLines);
schemaLines.forEach(function(line,index){
const cleanLine = line.trim();
schemaLines[index] = cleanLine;
});
schemaLines.forEach(function(line,index){
const thisLinePartsFound = [];
const lineIndex = index;
// console.log('lineIndex', lineIndex);
const cleanLine = line.trim();
// console.log(cleanLine);
const lineChars = cleanLine.split('');
const numbers = [];
var numberCount = 0;
var weAreBuildingNumber = false;
var lineAbove = null;
var lineBelow = false;
console.log('-');
console.log(`---- LINE ${lineIndex + 1} ANALYSIS -----`);
lineChars.forEach(function(char, i){
// console.log(char);
const isNum = !isNaN(char);
// console.log(`${char} is number`,isNum);
if( weAreBuildingNumber ) {
// already building a number
if( isNum ) {
const numberBeingBuilt = numbers[numberCount-1][0];
const buildNumber = `${numberBeingBuilt}${char}`;
numbers[numberCount - 1][0] = buildNumber;
} else {
weAreBuildingNumber = false;
}
} else {
// new number
if( isNum ) {
weAreBuildingNumber = true;
numberCount = numberCount + 1;
// console.log('numberCount',numberCount);
const numInstance = [char, i];
numbers[numberCount - 1] = numInstance;
}
}
if( char === '*' ) {
const potentialGearNumbers = [];
const starPos = i;
console.log('found a * at pos',starPos);
var buildingPrecedeNum = true;
var precedeNum = '';
var posToCheck = starPos - 1;
while( buildingPrecedeNum ) {
if( posToCheck >= 0 ) {
const checkingChar = cleanLine.charAt(posToCheck);
const checkingCharIsNum = !isNaN(checkingChar);
if( checkingCharIsNum ) {
precedeNum = `${checkingChar}${precedeNum}`;
posToCheck = posToCheck - 1;
} else {
buildingPrecedeNum = false;
}
} else {
buildingPrecedeNum = false;
}
}
if( precedeNum.length ) {
potentialGearNumbers.push(precedeNum);
}
var buildingFollowNum = true;
var followNum = '';
var posToCheck = starPos + 1;
while( buildingFollowNum ) {
if( posToCheck < cleanLine.length ) {
const checkingChar = cleanLine.charAt(posToCheck);
const checkingCharIsNum = !isNaN(checkingChar);
if( checkingCharIsNum ) {
followNum = `${followNum}${checkingChar}`;
posToCheck = posToCheck + 1;
} else {
buildingFollowNum = false;
}
} else {
buildingFollowNum = false;
}
}
if( followNum.length ) {
potentialGearNumbers.push(followNum);
}
console.log('potentialGearNumbers',potentialGearNumbers);
function buildNumBackNForth(string, startPos) {
var number = string.charAt(startPos);
var buildingLeft = true;
var checkPos = startPos;
// start recursing left
while( buildingLeft ) {
checkPos = checkPos - 1;
if( checkPos >= 0 ) {
const checkChar = string.charAt(checkPos);
const checkCharIsNum = !isNaN(checkChar);
if( checkCharIsNum ) {
number = `${checkChar}${number}`;
} else {
buildingLeft = false;
}
} else {
buildingLeft = false;
}
}
var buildingRight = true;
checkPos = startPos;
// start recursing right
while( buildingRight ) {
checkPos = checkPos + 1;
if( checkPos < string.length ) {
const checkChar = string.charAt(checkPos);
const checkCharIsNum = !isNaN(checkChar);
if( checkCharIsNum ) {
number = `${number}${checkChar}`;
} else {
buildingRight = false;
}
} else {
buildingRight = false;
}
}
return number;
}
// lets see if we already found 2 because it seems like the people who designed the puzzle are geniuses and never allowed possibilities in both directions
if( potentialGearNumbers.length === 2 ) {
console.log('! Alert: found a gear at line level!');
const num1 = parseFloat(potentialGearNumbers[0]);
const num2 = parseFloat(potentialGearNumbers[1]);
const gearRatio = num1*num2;
console.log('gear ratio is ', gearRatio);
gearRatios.push(gearRatio);
} else {
// lets keep looking for potential gears (above and below lol)
// first, above
const lineAboveIndex = lineIndex - 1;
if( lineAboveIndex >= 0 ) {
const lineAbove = schemaLines[lineAboveIndex];
const charAbove = lineAbove.charAt(starPos);
const charAboveIsNum = !isNaN(charAbove);
if( charAboveIsNum ) {
const number = buildNumBackNForth(lineAbove, starPos);
// console.log('above number is', number);
potentialGearNumbers.push(number);
} else {
const diagLeftPos = starPos - 1;
if( diagLeftPos >= 0 ) {
const charDiagLeft = lineAbove.charAt(diagLeftPos);
const charDiagLeftIsNum = !isNaN(charDiagLeft);
if( charDiagLeftIsNum ) {
const number = buildNumBackNForth(lineAbove, diagLeftPos);
potentialGearNumbers.push(number);
}
}
const diagRightPos = starPos + 1;
if( diagRightPos < cleanLine.length ) {
const charDiagRight = lineAbove.charAt(diagRightPos);
const charDiagRightsNum = !isNaN(charDiagRight);
if( charDiagRightsNum ) {
const number = buildNumBackNForth(lineAbove, diagRightPos);
potentialGearNumbers.push(number);
}
}
}
}
console.log('potentialGearNumbers', potentialGearNumbers);
// lets see if we found 2
if( potentialGearNumbers.length === 2 ) {
const num1 = parseFloat(potentialGearNumbers[0]);
const num2 = parseFloat(potentialGearNumbers[1]);
const gearRatio = num1*num2;
console.log('gear ratio is ', gearRatio);
gearRatios.push(gearRatio);
} else {
// lets check below
const lineBelowIndex = lineIndex + 1;
if( lineBelowIndex < schemaLines.length ) {
// start copy paste of above and inelegantly change to below
const lineBelow = schemaLines[lineBelowIndex];
const charBelow = lineBelow.charAt(starPos);
const charBelowIsNum = !isNaN(charBelow);
if( charBelowIsNum ) {
const number = buildNumBackNForth(lineBelow, starPos);
// console.log('above number is', number);
potentialGearNumbers.push(number);
} else {
const diagLeftPos = starPos - 1;
if( diagLeftPos >= 0 ) {
const charDiagLeft = lineBelow.charAt(diagLeftPos);
const charDiagLeftIsNum = !isNaN(charDiagLeft);
if( charDiagLeftIsNum ) {
const number = buildNumBackNForth(lineBelow, diagLeftPos);
potentialGearNumbers.push(number);
}
}
const diagRightPos = starPos + 1;
if( diagRightPos < cleanLine.length ) {
const charDiagRight = lineBelow.charAt(diagRightPos);
const charDiagRightsNum = !isNaN(charDiagRight);
if( charDiagRightsNum ) {
const number = buildNumBackNForth(lineBelow, diagRightPos);
potentialGearNumbers.push(number);
}
}
}
// end copy paste of above
console.log('potentialGearNumbers', potentialGearNumbers);
// lets see if we found 2
if( potentialGearNumbers.length === 2 ) {
const num1 = parseFloat(potentialGearNumbers[0]);
const num2 = parseFloat(potentialGearNumbers[1]);
const gearRatio = num1*num2;
console.log('gear ratio is ', gearRatio);
gearRatios.push(gearRatio);
}
}
}
}
}
});
// console.log('numbers found', numbers);
numbers.forEach(function(numberInstance){
var isPart = false;
// const numStartPos = cleanLine.indexOf(number); // this obviously doesn't work if there are two same numbers in a line
const numStartPos = numberInstance[1];
// console.log(`------ number ${number} found at ${numStartPos}`);
const number = numberInstance[0];
// check preceding char
const precedingPos = numStartPos - 1;
if( precedingPos >= 0 ) {
const precedingChar = cleanLine.charAt(precedingPos);
// console.log('the preceding char is',precedingChar);
const precedingIsSymbol = isSymbol(precedingChar);
if( precedingIsSymbol ) {
// console.log(`preceding char ${precedingChar} is a symbol`);
// console.log("it's a part!");
isPart = true;
partNumbers.push(number);
thisLinePartsFound.push(number);
// cumTot = cumTot + +number;
}
}
if( isPart ) {
return;
}
// check following char
const numLen = number.length;
// console.log(`the length of number ${number} is ${numLen}`);
const followingPos = numStartPos + numLen;
// console.log('the following position is', followingPos);
if( followingPos < cleanLine.length ) {
const followingChar = cleanLine.charAt(followingPos);
// console.log('the following char is',followingChar);
const followingIsSymbol = isSymbol(followingChar);
if( followingIsSymbol ) {
// console.log(`following char ${followingChar} is a symbol`);
// console.log("it's a part!");
isPart = true;
partNumbers.push(number);
thisLinePartsFound.push(number);
// cumTot = cumTot + +number;
}
}
if( isPart ) {
return;
}
function checkAdjacentLine(line, firstPosToCheck, lastPosToCheck) {
var partCaseFound = false;
if( firstPosToCheck < 0 ) {
firstPosToCheck = 0;
}
// console.log(`firstPosToCheck is ${firstPosToCheck} in check function`);
if( followingPos > cleanLine.length - 1 ) {
lastPosToCheck = cleanLine.length - 1;
}
// console.log(`lastPosToCheck is ${lastPosToCheck} in check function`);
const rangeToCheck = lastPosToCheck - firstPosToCheck;
for( var i=0; i <= rangeToCheck; i++ ) {
const posToCheck = firstPosToCheck + i;
// console.log(`we are checking the line at position ${posToCheck}`);
const checkingChar = line[posToCheck];
const checkingCharIsSymbol = isSymbol(checkingChar);
if( checkingCharIsSymbol ) {
// console.log(`char ${checkingChar} is a symbol`);
partCaseFound = true;
}
}
if( partCaseFound ) {
return true;
} else {
return false;
}
}
// start checking adjacent lines
var firstPosToCheck = precedingPos;
var lastPosToCheck = followingPos;
// check the line above, if there is one
const lineAboveIndex = lineIndex - 1;
if( lineAboveIndex >= 0 ) {
lineAbove = schemaLines[lineAboveIndex];
// console.log('lineAbove', lineAbove);
// console.log(`we are checking number ${number}`);
// console.log('firstPosToCheck',firstPosToCheck);
// console.log('lastPosToCheck',lastPosToCheck);
// console.log('linelength',cleanLine.length);
const partCaseFound = checkAdjacentLine(lineAbove, firstPosToCheck, lastPosToCheck);
if( partCaseFound ) {
// console.log(`part found because line above has symbol adjacent to number ${number}`);
isPart = true;
partNumbers.push(number);
thisLinePartsFound.push(number);
// cumTot = cumTot + +number;
}
}
if( isPart ) {
return;
}
// check the line below, if there is one
const lineBelowIndex = lineIndex + 1;
if( lineBelowIndex < schemaLines.length ) {
lineBelow = schemaLines[lineBelowIndex];
// console.log('lineBelow', lineBelow);
const partCaseFound = checkAdjacentLine(lineBelow, firstPosToCheck, lastPosToCheck);
if( partCaseFound ) {
// console.log(`part found because line below has symbol adjacent to number ${number}`);
isPart = true;
partNumbers.push(number);
thisLinePartsFound.push(number);
// cumTot = cumTot + +number;
}
}
});
// if( lineAbove ) {
// console.log(lineAbove);
// }
// console.log(line);
// if( lineBelow ) {
// console.log(lineBelow);
// }
// console.log(`on line ${lineIndex + 1} the numbers are`, numbers);
// console.log(`on line ${lineIndex + 1} found parts`, thisLinePartsFound);
});
console.log('partNumbers', partNumbers);
var total = 0;
partNumbers.forEach(function(partNumber) {
// console.log(typeof partNumber);
const number = parseFloat(partNumber);
total = total + number;
});
console.log('total',total);
// console.log('cumTot',cumTot);
// var noDupTotal = 0;
// const partNumbersNoDups = new Set(partNumbers);
// console.log('partNumbersNoDups',partNumbersNoDups);
// partNumbersNoDups.forEach(function(number){
// noDupTotal = noDupTotal + +number;
// });
// console.log('noDupTotal',noDupTotal);
console.log('gear ratios are:',gearRatios)
var totalFromGearRatios = 0;
gearRatios.forEach(function(gearRatio){
totalFromGearRatios = totalFromGearRatios + +gearRatio;
});
console.log('totalFromGearRatios',totalFromGearRatios);