From d70d43e91af45beaf5d06d7ac7fbbf25e776f599 Mon Sep 17 00:00:00 2001 From: Denis-Cosmin NUTIU Date: Fri, 1 Dec 2023 12:18:21 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=84Advent=20of=20Code=20-=20Day=201=20?= =?UTF-8?q?=E2=9C=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/kotlin/day1/Trebuchet.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/day1/Trebuchet.kt b/src/main/kotlin/day1/Trebuchet.kt index 3f25076..042f798 100644 --- a/src/main/kotlin/day1/Trebuchet.kt +++ b/src/main/kotlin/day1/Trebuchet.kt @@ -25,7 +25,7 @@ class Trebuchet { val calibrations = readCalibrationsFromFile() // print calibrations val calibrationData = calibrations.map { it -> - var digitsData = mapOf( + val digitsData = mapOf( "one" to "1", "two" to "2", "three" to "3",