blob: edf437daf305d6db2d9b395281cd0a6a3781ba21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
package jankenpon
import (
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
"mvinkio.online/aoc/aoc"
)
var (
data = aoc.ReadLines(readJankenpon)
answer1 = 15
answer2 = 12
)
var _ = Describe("jankenpon", func() {
Describe("Part One", func() {
It("should solve the example to the answer", func() {
Expect(true).To(Equal(true))
})
})
Describe("Part Two", func() {
It("should solve the example to the answer", func() {
Expect(true).To(Equal(true))
})
})
})
|