day08, solution not modified much

This commit is contained in:
Alex Chao
2020-08-03 16:22:34 -04:00
parent 534995dcac
commit 6144750bd7
5 changed files with 17 additions and 66 deletions
+1
View File
@@ -13,3 +13,4 @@ Day | Name | Type of Algo & Notes
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
7 | Amplification Circuit | - More Intcode... Piping together multiple Intcode computers 😳😳😳 <br> - Refactored Intcode computer to an OOP approach so a single computer maintains its data <br> - Also requires making __permutations generator__ <br> - Some gymnastics to make this circular, but its easier with this OOP approach and the "objects"/instances of a struct maintaining their own data
8 | Space Image Format | 3D Array manipulation