From 443c46f3363627842506db62a70a35ac517b393c Mon Sep 17 00:00:00 2001 From: Anastasios Chatzialexiou <16361161+tasxatzial@users.noreply.github.com> Date: Fri, 7 Mar 2025 19:04:39 +0200 Subject: [PATCH] Fix grid display in saddle-points exercise --- exercises/saddle-points/instructions.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/exercises/saddle-points/instructions.md b/exercises/saddle-points/instructions.md index c585568b46..f69cdab958 100644 --- a/exercises/saddle-points/instructions.md +++ b/exercises/saddle-points/instructions.md @@ -13,11 +13,12 @@ Or it might have one, or even several. Here is a grid that has exactly one candidate tree. ```text - 1 2 3 4 - |----------- -1 | 9 8 7 8 -2 | 5 3 2 4 <--- potential tree house at row 2, column 1, for tree with height 5 -3 | 6 6 7 1 + ↓ + 1 2 3 4 + |----------- + 1 | 9 8 7 8 +→ 2 |[5] 3 2 4 + 3 | 6 6 7 1 ``` - Row 2 has values 5, 3, 2, and 4. The largest value is 5.