Complete day 1

Note: For some reason my input results in part 2 being exactly 10 less
than it should be, I suspect this is a bug in the input data?
main
Tristan Daniël Maat 2023-12-04 18:29:30 +01:00
commit cedf1b8c0e
Signed by: tlater
GPG Key ID: 49670FD774E43268
5 changed files with 1137 additions and 0 deletions

84
day1/day1.kt Normal file
View File

@ -0,0 +1,84 @@
import java.io.File
import kotlin.text.Regex
fun main() {
part1()
part2()
}
fun part1() {
val input = File("input")
val numbers: List<Int> =
input.useLines { it.map { getPairsOfDigits(it) }.map { digitsToInt(it) }.toList() }
println(numbers.sum())
}
fun part2() {
val input = File("input")
val numbers: List<Int> =
input.useLines {
it.map { getPairsOfDigitsAndNames(it) }.map { digitsToInt(it) }.toList()
}
println(numbers.sum())
}
fun getPairsOfDigits(line: String): Pair<Int?, Int?> {
return line.fold(Pair<Int?, Int?>(null, null)) { acc, next ->
try {
val digit = next.digitToInt()
if (acc.first == null) {
Pair(digit, null)
} else {
Pair(acc.first, digit)
}
} catch (nfe: IllegalArgumentException) {
acc
}
}
}
fun getPairsOfDigitsAndNames(line: String): Pair<Int?, Int?> {
val matchValues = Regex("one|two|three|four|five|six|seven|eight|nine|0|1|2|3|4|5|6|7|8|9")
val digits = matchValues.findAll(line)
val matchToInt = { it: String ->
when (it) {
"one" -> 1
"two" -> 2
"three" -> 3
"four" -> 4
"five" -> 5
"six" -> 6
"seven" -> 7
"eight" -> 8
"nine" -> 9
"0" -> 0
"1" -> 1
"2" -> 2
"3" -> 3
"4" -> 4
"5" -> 5
"6" -> 6
"7" -> 7
"8" -> 8
"9" -> 9
else -> throw IllegalArgumentException("Illegal character: '${it}'")
}
}
val first = matchToInt(digits.first().value)
val last = matchToInt(digits.last().value)
println("${line}: ${first}, ${last}")
return Pair(first, last)
}
fun digitsToInt(digits: Pair<Int?, Int?>): Int {
return when {
digits.first == null -> throw Exception("no digit found on a line")
digits.second == null -> digits.first as Int * 10 + digits.first as Int
else -> digits.first as Int * 10 + digits.second as Int
}
}

1000
day1/input Normal file

File diff suppressed because it is too large Load Diff

7
day1/test Normal file
View File

@ -0,0 +1,7 @@
two1nine
eightwothree
abcone2threexyz
xtwone3four
4nineeightseven2
zoneight234
7pqrstsixteen

27
flake.lock Normal file
View File

@ -0,0 +1,27 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1701389149,
"narHash": "sha256-rU1suTIEd5DGCaAXKW6yHoCfR1mnYjOXQFOaH7M23js=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "5de0b32be6e85dc1a9404c75131316e4ffbc634c",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-23.11",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

19
flake.nix Normal file
View File

@ -0,0 +1,19 @@
{
description = "Advent of Code 2023 repo";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11";
};
outputs = {nixpkgs, ...}: let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
devShells.${system}.default = pkgs.mkShell {
packages = with pkgs; [
kotlin
kotlin-language-server
];
};
};
}