aoc21/d3/d3_test.go

26 lines
229 B
Go
Raw Normal View History

2022-02-08 21:38:01 +02:00
package d3
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestD3(t *testing.T) {
input := `
00100
11110
10110
10111
10101
01111
00111
11100
10000
11001
00010
01010`
assert.EqualValues(t, 198, D3(input))
}