Skip to content

Latest commit

 

History

History
45 lines (35 loc) · 3.22 KB

README.md

File metadata and controls

45 lines (35 loc) · 3.22 KB

🎄⭐🌟 Advent of Code 2022 🌟⭐🎄



Go

Architecture

For Day1, you can edit the following file:

  • day1/input.txt (Containing the dataset)
  • day1/main.go (Containing the code)
  • day1/main_test.go (Containing the test set)

Commands

For Day1, you can cd into day1/ and then use the following commands:

  • go run . to run the code against the dataset
  • echo "my-data-set" | go run . to run the code against data provided on stdin
  • go test . to run the test set