advent_of_code_2024/example/solution.go

12 lines
212 B
Go
Raw Normal View History

2024-12-12 21:12:54 +00:00
package example
// task:https://adventofcode.com/2024/day/13
func SolveBasic(input string) int {
return 0
}
// task:https://adventofcode.com/2024/day/12#part2
func SolveComplex(input string) int {
return 0
}