aoc-2022/README.md

742 B

my advent of code 2022 solutions

this repo will also include online solutions that I think are neat, indicated by "ONLINE" and with credit in the file

all awk and shell solutions conform to POSIX unless otherwise specified. all c solutions use only the glibc standard library unless otherwise specified (and hopefully only use POSIX functions? idk).

Days

  1. awk (GNU gawk)
  2. shell
  3. awk
  4. shell
  5. shell (modified input, see 05_i2. could easily be adapted to not rely on it though)
    • I also started work on a "general-case" C solution, but it's currently incomplete
  6. C
  7. shell
    • this solution literally emulates the entire directory structure as a whole, which I find really funny. it's probably my favorite solution
  8. C