Create README.md

master
Matthew Butterick 4 years ago committed by GitHub
parent 880cfd5c71
commit 295b0f9b13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,15 @@
## MBs Advent of Code tips
* Complex numbers are a nice way of modeling two-dimensional positions.
* Use lists whenever feasible, because there are many useful list functions in the Racket library that dont have vector equivalents.
* In particular, [these list functions](https://docs.racket-lang.org/reference/pairs.html?q=racket%2Flist#%28part._.Additional_.List_.Functions_and_.Synonyms%29) are very useful.
* The `graph` library can be useful for graph-based problems.
## My solutions
I try to write solutions that are succinct but not cryptic.
I dont optimize for speed.