mirror of
https://github.com/Threnklyn/advent-of-code-go.git
synced 2026-05-18 19:13:27 +02:00
22 lines
317 B
Go
22 lines
317 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/alexchao26/advent-of-code-go/util"
|
|
)
|
|
|
|
func TestPart1(t *testing.T) {
|
|
// Examples
|
|
|
|
// Run actual problem input
|
|
// part1(util.ReadFile("input.txt"))
|
|
}
|
|
|
|
func TestPart2(t *testing.T) {
|
|
// Examples
|
|
|
|
// Run actual problem input
|
|
// part2(util.ReadFile("input.txt"))
|
|
}
|