Files
adventofcode/2024/gareth/day11/day11_test.go
Gareth 507cb1a907 Day11
2025-01-11 16:39:58 +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)
}