Skip to content

Commit

Permalink
Add day one solution
Browse files Browse the repository at this point in the history
  • Loading branch information
bryan-aguilar committed Dec 3, 2021
0 parents commit 1b8d4dc
Show file tree
Hide file tree
Showing 4 changed files with 2,075 additions and 0 deletions.
13 changes: 13 additions & 0 deletions cmd/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package main

// Take in command line arguments to process which day we want
// Daily problems will be stored in there applicable package directory
import (
dayOne "aoc21/pkg/dayOne"
"fmt"
)

func main() {
fmt.Println(dayOne.PartOne())
fmt.Println(dayOne.PartTwo())
}
3 changes: 3 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module aoc21

go 1.17
Loading

0 comments on commit 1b8d4dc

Please sign in to comment.