-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 1b8d4dc
Showing
4 changed files
with
2,075 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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()) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module aoc21 | ||
|
||
go 1.17 |
Oops, something went wrong.