Skip to content

Commit

Permalink
comment
Browse files Browse the repository at this point in the history
  • Loading branch information
encse committed Dec 17, 2024
1 parent e860452 commit 76b643f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions 2024/Day17/Solution.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ IEnumerable<long> GenerateA(List<long> output) {
yield break;
}

// this loop is pretty much the assembly code of the program reimplemented in c#
foreach (var ah in GenerateA(output[1..])) {
for (var al = 0; al < 8; al++) {
var a = ah * 8 + al;
Expand Down

0 comments on commit 76b643f

Please sign in to comment.