commit 082e46a5a37fc23063f892e4b1c8f5baff28b34b (patch) parent 020de432cbba41142302e5e654f8251aa37aff60 Author: Alex Karle <alex@alexkarle.com> Date: Thu, 1 Dec 2022 00:06:28 -0500 Move last year's solutions to 2021 directory Diffstat:
62 files changed, 4 insertions(+), 22 deletions(-)
diff --git a/01/README b/2021/01/README diff --git a/01/a.c b/2021/01/a.c diff --git a/01/a.py b/2021/01/a.py diff --git a/01/b.c b/2021/01/b.c diff --git a/01/b.py b/2021/01/b.py diff --git a/01/input b/2021/01/input diff --git a/01/sol.scm b/2021/01/sol.scm diff --git a/02/a.c b/2021/02/a.c diff --git a/02/a.py b/2021/02/a.py diff --git a/02/b.c b/2021/02/b.c diff --git a/02/b.py b/2021/02/b.py diff --git a/02/input b/2021/02/input diff --git a/02/sol.scm b/2021/02/sol.scm diff --git a/03/a.c b/2021/03/a.c diff --git a/03/a.py b/2021/03/a.py diff --git a/03/b.py b/2021/03/b.py diff --git a/03/input b/2021/03/input diff --git a/04/a.py b/2021/04/a.py diff --git a/04/b.py b/2021/04/b.py diff --git a/04/common.py b/2021/04/common.py diff --git a/04/input b/2021/04/input diff --git a/05/a.c b/2021/05/a.c diff --git a/05/a.py b/2021/05/a.py diff --git a/05/b.c b/2021/05/b.c diff --git a/05/b.py b/2021/05/b.py diff --git a/05/input b/2021/05/input diff --git a/06/a.c b/2021/06/a.c diff --git a/06/a.py b/2021/06/a.py diff --git a/06/b.c b/2021/06/b.c diff --git a/06/b.py b/2021/06/b.py diff --git a/06/input b/2021/06/input diff --git a/07/a.py b/2021/07/a.py diff --git a/07/b.py b/2021/07/b.py diff --git a/07/input b/2021/07/input diff --git a/08/a.py b/2021/08/a.py diff --git a/08/b.py b/2021/08/b.py diff --git a/08/input b/2021/08/input diff --git a/08/input2 b/2021/08/input2 diff --git a/09/a.py b/2021/09/a.py diff --git a/09/b.py b/2021/09/b.py diff --git a/09/input b/2021/09/input diff --git a/09/input2 b/2021/09/input2 diff --git a/10/a.py b/2021/10/a.py diff --git a/10/b.py b/2021/10/b.py diff --git a/10/input b/2021/10/input diff --git a/11/a.py b/2021/11/a.py diff --git a/11/b.py b/2021/11/b.py diff --git a/11/example b/2021/11/example diff --git a/11/input b/2021/11/input diff --git a/12/a.py b/2021/12/a.py diff --git a/12/b.py b/2021/12/b.py diff --git a/12/ex2 b/2021/12/ex2 diff --git a/12/example b/2021/12/example diff --git a/12/input b/2021/12/input diff --git a/13/a.py b/2021/13/a.py diff --git a/13/b.py b/2021/13/b.py diff --git a/13/example b/2021/13/example diff --git a/13/input b/2021/13/input diff --git a/Makefile b/2021/Makefile diff --git a/README.md b/2021/README.md diff --git a/LICENSE b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2021 Alex Karle <alex@alexkarle.com> +Copyright (c) 2021-2022 Alex Karle <alex@alexkarle.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md @@ -1,22 +1,4 @@ -Advent of Code 2021 -=================== -This year I'm attempting at least some of the earlier problems -in C as well as Python (need the dynamic language to get that -super speedy private leaderboard time!). +# Advent of Code -Should get interesting once I need hashmaps :) - -If you want to discuss any of my solutions, shoot me an email -at my public inbox: [~akarle/public-inbox@lists.sr.ht][mail] - -[mail]: mailto:~akarle/public-inbox@lists.sr.ht - -Running -------- -The GNU Makefile builds the C code and runs both C and Python -solutions via the `build` and `run` targets respectively. `run` -takes an optional parameter `DAY` that can limit the solutions -run: - - make run # runs all - make DAY=01 run # runs day 1 +* [2021](./2021): Mostly Python, some C +* [2022](./2022): Attempting CHICKEN Scheme