Days 7,8,9
This commit is contained in:
16
2023/gareth/day07/day07_test.go
Normal file
16
2023/gareth/day07/day07_test.go
Normal file
@@ -0,0 +1,16 @@
|
||||
package day06
|
||||
|
||||
import (
|
||||
"github.com/stretchr/testify/assert"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestPart1(t *testing.T) {
|
||||
r := Part1(``)
|
||||
assert.Equal(t, 1624896, r)
|
||||
}
|
||||
|
||||
func TestPart2(t *testing.T) {
|
||||
r := Part2(``)
|
||||
assert.Equal(t, 32583852, r)
|
||||
}
|
||||
Reference in New Issue
Block a user