diff options
-rw-r--r-- | Puzzle23translation.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Puzzle23translation.md b/Puzzle23translation.md index 018e129..de2b060 100644 --- a/Puzzle23translation.md +++ b/Puzzle23translation.md @@ -1,6 +1,6 @@ Translation from the assembly code to pseudocode: -''' +``` b = 105700 c = 122700 @@ -11,11 +11,11 @@ for b = 105700, 105717, .., 122683 if d * e == b then f = 0 if f == 0 then h += 1 return h -''' +``` The original assembly code: -''' +``` set b 57 set c b jnz a 2 @@ -48,4 +48,4 @@ jnz g 2 jnz 1 3 sub b -17 jnz 1 -23 -''' +``` |