From fd78037899fbd5e03aac50a5d4b8cccccbc2b4a0 Mon Sep 17 00:00:00 2001 From: dnutiu Date: Sun, 3 Dec 2023 14:21:15 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=84Advent=20of=20Code=20-=20Day=203=20?= =?UTF-8?q?=E2=9C=A8=20part=201?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/kotlin/AdventOfCode2023/day3/GearRatios.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/kotlin/AdventOfCode2023/day3/GearRatios.kt b/src/main/kotlin/AdventOfCode2023/day3/GearRatios.kt index 7a262c5..76ae571 100644 --- a/src/main/kotlin/AdventOfCode2023/day3/GearRatios.kt +++ b/src/main/kotlin/AdventOfCode2023/day3/GearRatios.kt @@ -96,6 +96,7 @@ class GearRatios : Puzzle { } override fun partTwo() { + // For each gear *, do a box search and multiply numbers to find gear ratio and then sum. TODO("Not yet implemented") } } \ No newline at end of file