fix wrong org conversion (brackets become links in code blocks)

This commit is contained in:
2023-01-11 20:16:51 +01:00
parent 5cde9051ec
commit 357e8ce087

View File

@@ -21,7 +21,7 @@ For example:
[[1],4] [[1],4]
[9] [9]
[[8,7,6]] [[[[8,7,6]]]]
[[4,4],4,4] [[4,4],4,4]
[[4,4],4,4,4] [[4,4],4,4,4]
@@ -86,7 +86,7 @@ are in the right order:
- Left side is smaller, so inputs are in the right order - Left side is smaller, so inputs are in the right order
== Pair 3 == == Pair 3 ==
- Compare [9] vs [[8,7,6]] - Compare [9] vs [[[[8,7,6]]]]
- Compare 9 vs [8,7,6] - Compare 9 vs [8,7,6]
- Mixed types; convert left to [9] and retry comparison - Mixed types; convert left to [9] and retry comparison
- Compare [9] vs [8,7,6] - Compare [9] vs [8,7,6]
@@ -152,8 +152,8 @@ The distress signal protocol also requires that you include two
additional /divider packets/: additional /divider packets/:
#+begin_example #+begin_example
[[2]] [[[[2]]]]
[[6]] [[[[6]]]]
#+end_example #+end_example
Using the same rules as before, organize all packets - the ones in your Using the same rules as before, organize all packets - the ones in your
@@ -173,14 +173,14 @@ order is:
[1,[2,[3,[4,[5,6,0]]]],8,9] [1,[2,[3,[4,[5,6,0]]]],8,9]
[1,[2,[3,[4,[5,6,7]]]],8,9] [1,[2,[3,[4,[5,6,7]]]],8,9]
[[1],4] [[1],4]
[[2]] [[[[2]]]]
[3] [3]
[[4,4],4,4] [[4,4],4,4]
[[4,4],4,4,4] [[4,4],4,4,4]
[[6]] [[[[6]]]]
[7,7,7] [7,7,7]
[7,7,7,7] [7,7,7,7]
[[8,7,6]] [[[[8,7,6]]]]
[9] [9]
#+end_example #+end_example