Skip to content

Instantly share code, notes, and snippets.

View znkr's full-sized avatar
👀

Florian Zenker znkr

👀
View GitHub Profile
@znkr
znkr / day22.go
Last active December 22, 2021 21:18
Aoc 2021 Day 22
package day22
import (
"bufio"
"fmt"
"io"
"sort"
)
type instr struct {
@znkr
znkr / day19.go
Created December 22, 2021 18:32
AoC 2021 Day 19
package day19
import (
"bufio"
"fmt"
"io"
"sort"
"strings"
"sync"
)