Files
adventofcode/2024/gareth/day11/day11_test.go
2025-01-13 23:48:55 +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)
}