aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuchen Pei <me@ypei.me>2017-12-23 12:09:30 +0100
committerYuchen Pei <me@ypei.me>2017-12-23 12:09:30 +0100
commitc52185c2bf0bd2e517b781a9fe9de0b10430a9ac (patch)
treecec09f59ff30a8d18c8049b02eedd56add73f99e
parent525a0046b758ba54c5a6b54c14fccd24579064e1 (diff)
minor edits
-rw-r--r--Puzzle23translation.md8
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
-'''
+```