Files
adventofcode/2024/gareth/day11/day11_test.go
Gareth c9b972148b Day11
2024-12-12 13:11:47 +00:00

13 lines
159 B
Go

package day11
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestPart1(t *testing.T) {
r := Part1(`125 17`)
assert.Equal(t, 55312, r)
}