🎄Advent of Code - Day 1

This commit is contained in:
Denis-Cosmin NUTIU 2023-12-01 12:16:27 +02:00
parent ee39eeda1d
commit a1070301c7
6 changed files with 1126 additions and 6 deletions

View file

@ -1,7 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ExternalStorageConfigurationManager" enabled="true" />
<component name="ProjectRootManager" version="2" languageLevel="JDK_20" default="true" project-jdk-name="corretto-20" project-jdk-type="JavaSDK">
<component name="FrameworkDetectionExcludesConfiguration">
<file type="web" url="file://$PROJECT_DIR$" />
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" project-jdk-name="corretto-20" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>

View file

@ -1,7 +1,7 @@
fun main(args: Array<String>) {
println("Hello World!")
import day1.Trebuchet
// Try adding program arguments via Run/Debug configuration.
// Learn more about running applications: https://www.jetbrains.com/help/idea/running-applications.html.
println("Program arguments: ${args.joinToString()}")
fun main(args: Array<String>) {
val t = Trebuchet()
// t.partOne()
t.partTwo()
}

View file

@ -1,4 +1,83 @@
package day1
import java.io.File
class Trebuchet {
fun partOne() {
// read calibrations from file
val calibrations = readCalibrationsFromFile()
// print calibrations
val calibrationData = calibrations.map {
// replace non-digits with empty string
it.replace(Regex("[^0-9]"), "")
}.map {
// convert to integer
val firstDigit = it.first().toString().toInt()
val secondDigit = it.last().toString().toInt()
// return the sum of the two digits
firstDigit * 10 + secondDigit
}.sum()
println("Part1: The calibration data is $calibrationData.")
}
fun partTwo() {
// read calibrations from file
val calibrations = readCalibrationsFromFile()
// print calibrations
val calibrationData = calibrations.map { it ->
var digitsData = mapOf(
"one" to "1",
"two" to "2",
"three" to "3",
"four" to "4",
"five" to "5",
"six" to "6",
"seven" to "7",
"eight" to "8",
"nine" to "9"
)
val currentBuffer: MutableList<String> = mutableListOf()
val returnValue: MutableList<String> = mutableListOf()
it.forEach {
// If it's a digit we add it to return value
if (it.isDigit()) {
returnValue.add(it.toString())
return@forEach
}
// We scan for numbers
currentBuffer.add(it.toString())
val currentBufferString = currentBuffer.joinToString(separator = "")
for (key in digitsData.keys) {
if (currentBufferString.contains(key)) {
returnValue.add(digitsData[key].toString())
currentBuffer.clear()
// keep the last character
currentBuffer.add(it.toString())
}
}
}
returnValue.joinToString(separator = "")
}.map {
it.replace(Regex("[^0-9]"), "")
}.map {
// convert to integer
val firstDigit = it.first().toString().toInt()
val secondDigit = it.last().toString().toInt()
// return the sum of the two digits
println(firstDigit * 10 + secondDigit)
firstDigit * 10 + secondDigit
}.sum()
println("Part2: The calibration data is $calibrationData.")
}
private fun readCalibrationsFromFile(): List<String> {
// read calibrations from resources file
this.javaClass.getResourceAsStream("/day1/calibration.txt")?.bufferedReader()?.useLines { lines ->
return lines.toList()
}
throw Exception("Could not read calibrations from file.")
}
}

View file

@ -0,0 +1,38 @@
--- Day 1: Trebuchet?! ---
Something is wrong with global snow production, and you've been selected to take a look. The Elves have even given you a map; on it, they've used stars to mark the top fifty locations that are likely to be having problems.
You've been doing this long enough to know that to restore snow operations, you need to check all fifty stars by December 25th.
Collect stars by solving puzzles. Two puzzles will be made available on each day in the Advent calendar; the second puzzle is unlocked when you complete the first. Each puzzle grants one star. Good luck!
You try to ask why they can't just use a weather machine ("not powerful enough") and where they're even sending you ("the sky") and why your map looks mostly blank ("you sure ask a lot of questions") and hang on did you just say the sky ("of course, where do you think snow comes from") when you realize that the Elves are already loading you into a trebuchet ("please hold still, we need to strap you in").
As they're making the final adjustments, they discover that their calibration document (your puzzle input) has been amended by a very young Elf who was apparently just excited to show off her art skills. Consequently, the Elves are having trouble reading the values on the document.
The newly-improved calibration document consists of lines of text; each line originally contained a specific calibration value that the Elves now need to recover. On each line, the calibration value can be found by combining the first digit and the last digit (in that order) to form a single two-digit number.
For example:
1abc2
pqr3stu8vwx
a1b2c3d4e5f
treb7uchet
In this example, the calibration values of these four lines are 12, 38, 15, and 77. Adding these together produces 142.
Consider your entire calibration document. What is the sum of all of the calibration values?
--- Part Two ---
Your calculation isn't quite right. It looks like some of the digits are actually spelled out with letters: one, two, three, four, five, six, seven, eight, and nine also count as valid "digits".
Equipped with this new information, you now need to find the real first and last digit on each line. For example:
two1nine
eightwothree
abcone2threexyz
xtwone3four
4nineeightseven2
zoneight234
7pqrstsixteen
In this example, the calibration values are 29, 83, 13, 24, 42, 14, and 76. Adding these together produces 281.
What is the sum of all of the calibration values?

File diff suppressed because it is too large Load diff