Skip to content

Commit

Permalink
Init 2024 :) (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkopec87 authored Nov 28, 2024
1 parent 703aede commit c0a7fad
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/readme-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
max-parallel: 1 # to prevent too many requests to AoC API
matrix:
year: [2023, 2022, 2021, 2020, 2019, 2018, 2017, 2016, 2015]
year: [2024, 2023, 2022, 2021, 2020, 2019, 2018, 2017, 2016, 2015]

runs-on: ubuntu-latest

Expand Down
17 changes: 17 additions & 0 deletions src/2024/01/2024_01.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
from src.utils.data import load_data
from src.utils.submission import submit_or_print


def main(debug: bool) -> None:
input_data = load_data(debug)

result_part1 = None
result_part2 = None

submit_or_print(result_part1, result_part2, debug)


if __name__ == "__main__":
debug_mode = True
# debug_mode = False
main(debug_mode)

0 comments on commit c0a7fad

Please sign in to comment.