This commit is contained in:
Anthony Gueguen
2023-12-05 17:50:29 +01:00
parent 9dbefdf49f
commit cdfeeb856c
3 changed files with 99 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
seeds: 79 14 55 13
seed-to-soil map:
50 98 2
52 50 48
soil-to-fertilizer map:
0 15 37
37 52 2
39 0 15
fertilizer-to-water map:
49 53 8
0 11 42
42 0 7
57 7 4
water-to-light map:
88 18 7
18 25 70
light-to-temperature map:
45 77 23
81 45 19
68 64 13
temperature-to-humidity map:
0 69 1
1 0 69
humidity-to-location map:
60 56 37
56 93 4
+20
View File
@@ -0,0 +1,20 @@
package main
import (
"fmt"
utils "git.anthonygueguen.fr/g3po/aoc2023/internal"
day05 "git.anthonygueguen.fr/g3po/aoc2023/internal/05"
)
func main() {
content := utils.Init()
fmt.Println("Part 1")
result := day05.GetShortestLocation(content)
fmt.Printf("Result: %d\n", result)
fmt.Println("Part 2")
// fmt.Printf("Result: %d\n", result[1])
}