Skip to content

Instantly share code, notes, and snippets.

View Nv7-GitHub's full-sized avatar
🤔
What's your least favorite day?

Nv7 Nv7-GitHub

🤔
What's your least favorite day?
View GitHub Profile
@Nv7-GitHub
Nv7-GitHub / 9a.go
Last active December 9, 2021 08:21
Advent of Code 2021 Day 9
package main
import (
_ "embed"
"fmt"
"strconv"
"strings"
)
//go:embed input.txt
@Nv7-GitHub
Nv7-GitHub / 8a.go
Created December 9, 2021 08:20
Advent of Code 2021 Day 8
package main
import (
_ "embed"
"fmt"
"strings"
)
//go:embed input.txt
var input string
@Nv7-GitHub
Nv7-GitHub / 7a.go
Created December 7, 2021 05:48
Advent of Code 2021 Day 7
package main
import (
_ "embed"
"fmt"
"math"
"strconv"
"strings"
)
@Nv7-GitHub
Nv7-GitHub / 6a.go
Created December 7, 2021 05:31
Advent of Code 2021 Day 6
package main
import (
_ "embed"
"fmt"
"strconv"
"strings"
)
//go:embed input.txt
@Nv7-GitHub
Nv7-GitHub / 5a.go
Created December 5, 2021 07:39
Advent of Code 2021 Day 5
package main
import (
_ "embed"
"fmt"
"strconv"
"strings"
)
//go:embed input.txt
@Nv7-GitHub
Nv7-GitHub / 3a.go
Created December 5, 2021 07:02
Advent of Code 2021 Day 3
package main
import (
_ "embed"
"fmt"
"strconv"
"strings"
)
//go:embed input.txt
@Nv7-GitHub
Nv7-GitHub / 2a.go
Created December 5, 2021 06:37
Advent of Code 2021 Day 2
package main
import (
_ "embed"
"fmt"
"strconv"
"strings"
)
//go:embed input.txt
@Nv7-GitHub
Nv7-GitHub / 1a.go
Created December 5, 2021 06:30
Advent of Code 2021 Day 1
package main
import (
_ "embed"
"fmt"
"strconv"
"strings"
)
//go:embed input.txt
@Nv7-GitHub
Nv7-GitHub / 4a.go
Created December 5, 2021 06:20
Advent of Code 2021 Day 4
package main
import (
_ "embed"
"fmt"
"strconv"
"strings"
)
//go:embed input.txt