day 2 puzzle 2

This commit is contained in:
Louis Heredero 2023-12-02 11:57:59 +01:00
parent 3395f8848f
commit bd84c48a21
2 changed files with 68 additions and 0 deletions

59
src/day2/Puzzle2.scala Normal file
View File

@ -0,0 +1,59 @@
package day2
import scala.collection.mutable
import scala.io.{BufferedSource, Source}
object Puzzle2 {
var games: Array[String] = new Array(0)
def loadInput(path: String): Unit = {
val source: BufferedSource = Source.fromFile(path)
games = source.getLines().toArray
source.close()
}
def getPowers(): Array[Int] = {
val powers: Array[Int] = new Array(games.length)
for ((game: String, i: Int) <- games.zipWithIndex) {
powers(i) = getPower(game)
}
return powers
}
def getPower(game: String): Int = {
var power: Int = 1
val sets: Array[String] = game.split(": ")(1).split("; ")
val minCounts: mutable.Map[String, Int] = new mutable.HashMap()
for (set: String <- sets) {
val groups: Array[String] = set.split(", ")
for (group: String <- groups) {
val parts: Array[String] = group.split(" ")
val count: Int = parts(0).toInt
val color: String = parts(1)
if (minCounts.contains(color)) {
minCounts(color) = math.max(minCounts(color), count)
} else {
minCounts(color) = count
}
}
}
minCounts.foreach((p: (String, Int)) => {
power *= p._2
})
return power
}
def solve(path: String): Int = {
loadInput(path)
val powers: Array[Int] = getPowers()
return powers.sum
}
def main(args: Array[String]): Unit = {
val solution: Int = solve("res/day2/input1.txt")
println(solution)
}
}

View File

@ -0,0 +1,9 @@
package day2
import org.scalatest.funsuite.AnyFunSuite
class Puzzle2Test extends AnyFunSuite {
test("Puzzle2.solve") {
assert(Puzzle2.solve("tests_res/day2/input1.txt") == 2286)
}
}