12 lines
212 B
Go
12 lines
212 B
Go
|
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
|
||
|
}
|