This commit is contained in:
Gareth
2024-12-12 02:10:24 +00:00
parent 9b0516c587
commit c9b972148b
4 changed files with 106 additions and 4 deletions

View File

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