day06 cleanup, not refactoring the solution...

This commit is contained in:
alexchao26
2020-08-02 22:43:25 -04:00
parent b09aee0bcb
commit 2c04472991
5 changed files with 14 additions and 243 deletions
+2 -1
View File
@@ -10,4 +10,5 @@ Day | Name | Type of Algo & Notes
2 | Program Alarm | - Intro to the crazy Intcode problems that are half the AoC days... <br> - Array (slice...) manipulation <br> - I used recursion
3 | Crossed Wires | - Geometry kind of algo, finding intersections of lines on a grid
4 | Secure Container | - May appear math-y, but it's really a string manipulation problem
5 | Sunny with a Chance of Asteroids | - Yay more Intcode!........
5 | Sunny with a Chance of Asteroids | - Yay more Intcode!........ <br> - This gave me fits... <br> - Good application for recursion (in my opinion)
6 | Universal Orbit Map | - __Tree traversal__ and depth calculations. It's not quite a Graph, but it has a __directed graph__ algo feel too