You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 2024/Day17/README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,3 +20,7 @@ _lowest few bits_ of the input. Then the input gets shifted by a small amount, a
20
20
There is _some interconnection_ between the consecutive numbers, so one cannot just calculate the result independently
21
21
for each. But I was able to come up with a _recursive solution_ that generates the input _backwards_. Once we know the
22
22
higher bits, we can try all combinations for the next 3 bits, and so on down to the first bit.
23
+
24
+
As an added bonus I implemented (part of) the emulator in [VIC-20 BASIC](https://hu.wikipedia.org/wiki/Commodore_VIC-20). This is how it runs the second sample that prints out its own source code.
0 commit comments