From 01a18b90d3ecefee149fdb4d809cd918ce46337c Mon Sep 17 00:00:00 2001 From: Matthijs <19817960+MatthijsBlom@users.noreply.github.com> Date: Wed, 27 Mar 2024 23:14:45 +0100 Subject: [PATCH 1/4] Refine wording --- exercises/saddle-points/instructions.md | 2 +- exercises/saddle-points/introduction.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/exercises/saddle-points/instructions.md b/exercises/saddle-points/instructions.md index c585568b46..024af129e5 100644 --- a/exercises/saddle-points/instructions.md +++ b/exercises/saddle-points/instructions.md @@ -5,7 +5,7 @@ Your task is to find the potential trees where you could build your tree house. The data company provides the data as grids that show the heights of the trees. The rows of the grid represent the east-west direction, and the columns represent the north-south direction. -An acceptable tree will be the largest in its row, while being the smallest in its column. +An acceptable tree will have the greatest height in its row, while having the least height in its column. A grid might not have any good trees at all. Or it might have one, or even several. diff --git a/exercises/saddle-points/introduction.md b/exercises/saddle-points/introduction.md index 34b2c77e0c..56df77a77f 100644 --- a/exercises/saddle-points/introduction.md +++ b/exercises/saddle-points/introduction.md @@ -7,5 +7,5 @@ You need to analyze each grid on the map to find good trees for your tree house. A good tree is both: -- taller than every tree to the east and west, so that you have the best possible view of the sunrises and sunsets. -- shorter than every tree to the north and south, to minimize the amount of tree climbing. +- no shorter than any tree to the east and west, so that you have the best possible view of the sunrises and sunsets. +- no taller than any tree to the north and south, to minimize the amount of tree climbing. From cd1ca0a82de03a8b4c2855bd08befa3df3fcfd6f Mon Sep 17 00:00:00 2001 From: Erik Schierboom Date: Tue, 2 Apr 2024 09:20:54 +0200 Subject: [PATCH 2/4] Update exercises/saddle-points/introduction.md Co-authored-by: Matthijs <19817960+MatthijsBlom@users.noreply.github.com> --- exercises/saddle-points/introduction.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/saddle-points/introduction.md b/exercises/saddle-points/introduction.md index 56df77a77f..f376a94591 100644 --- a/exercises/saddle-points/introduction.md +++ b/exercises/saddle-points/introduction.md @@ -7,5 +7,5 @@ You need to analyze each grid on the map to find good trees for your tree house. A good tree is both: -- no shorter than any tree to the east and west, so that you have the best possible view of the sunrises and sunsets. -- no taller than any tree to the north and south, to minimize the amount of tree climbing. +- at least as tall as all trees to the east and west, so that you have the best possible view of the sunrises and sunsets. +- at most as tall as all tree to the north and south, to minimize the amount of tree climbing. From 69e44c56a44f1a1e7138339ea78ce3eb0b3ff71c Mon Sep 17 00:00:00 2001 From: Victor Goff Date: Fri, 5 Apr 2024 01:15:28 -0400 Subject: [PATCH 3/4] tallest and shortest wording --- exercises/saddle-points/instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/saddle-points/instructions.md b/exercises/saddle-points/instructions.md index 024af129e5..5900142b98 100644 --- a/exercises/saddle-points/instructions.md +++ b/exercises/saddle-points/instructions.md @@ -5,7 +5,7 @@ Your task is to find the potential trees where you could build your tree house. The data company provides the data as grids that show the heights of the trees. The rows of the grid represent the east-west direction, and the columns represent the north-south direction. -An acceptable tree will have the greatest height in its row, while having the least height in its column. +An acceptable tree will be the tallest in its row, while being the shortest in its column. A grid might not have any good trees at all. Or it might have one, or even several. From 2070187623bbd8fb433460711b1f94ea0eba6861 Mon Sep 17 00:00:00 2001 From: Matthijs <19817960+MatthijsBlom@users.noreply.github.com> Date: Fri, 5 Apr 2024 12:48:08 +0200 Subject: [PATCH 4/4] fix typo Co-authored-by: Erik Schierboom --- exercises/saddle-points/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/saddle-points/introduction.md b/exercises/saddle-points/introduction.md index f376a94591..eae3a7f359 100644 --- a/exercises/saddle-points/introduction.md +++ b/exercises/saddle-points/introduction.md @@ -8,4 +8,4 @@ You need to analyze each grid on the map to find good trees for your tree house. A good tree is both: - at least as tall as all trees to the east and west, so that you have the best possible view of the sunrises and sunsets. -- at most as tall as all tree to the north and south, to minimize the amount of tree climbing. +- at most as tall as all trees to the north and south, to minimize the amount of tree climbing.