Quellcode durchsuchen

typo in post causing code formating failure

john melesky vor 8 Jahren
Ursprung
Commit
9ab2bb7136
1 geänderte Dateien mit 1 neuen und 0 gelöschten Zeilen
  1. 1 0
      posts/2016-08-25-different-distances.md

+ 1 - 0
posts/2016-08-25-different-distances.md

@@ -222,6 +222,7 @@ $$d_2 = \lfloor 1.5 \times (\min(|x_1 - x_2|, |y_1 - y_2|))\rfloor$$
 $$d  = d_1 + d_2$$
 
 And in code, that looks like this[^odd]:
+
 ~~~ {.python}
 def dandddistance(x1, y1, x2, y2):
     mindist = min(abs(x1 - x2), abs(y1 - y2))