tracks/kotlin/exercises/saddle-points/README.md in trackler-2.2.1.45 vs tracks/kotlin/exercises/saddle-points/README.md in trackler-2.2.1.46
- old
+ new
@@ -2,10 +2,10 @@
Detect saddle points in a matrix.
So say you have a matrix like so:
-```plain
+```text
0 1 2
|---------
0 | 9 8 7
1 | 5 3 2 <--- saddle point at (1,0)
2 | 6 6 7