From 1c84b56175801ecea45c5b39ea8c0a362af9e6b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C2=A1ke?= <77801554+front42@users.noreply.github.com> Date: Tue, 4 Nov 2025 13:56:32 +0300 Subject: [PATCH] fix: correct filter-range-in-place task.md en --- .../05-array-methods/3-filter-range-in-place/task.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/05-array-methods/3-filter-range-in-place/task.md b/1-js/05-data-types/05-array-methods/3-filter-range-in-place/task.md index 7066a51ab2..99ba0cb327 100644 --- a/1-js/05-data-types/05-array-methods/3-filter-range-in-place/task.md +++ b/1-js/05-data-types/05-array-methods/3-filter-range-in-place/task.md @@ -4,7 +4,7 @@ importance: 4 # Filter range "in place" -Write a function `filterRangeInPlace(arr, a, b)` that gets an array `arr` and removes from it all values except those that are between `a` and `b`. The test is: `a ≤ arr[i] ≤ b`. +Write a function `filterRangeInPlace(arr, a, b)` that gets an array `arr` and removes from it all values except those that are in the inclusive range from `a` to `b`. The test is: `a ≤ arr[i] ≤ b`. The function should only modify the array. It should not return anything.