Merge pull request #175 from kitiya/master

Update Data Types section
This commit is contained in:
Ilya Kantor 2017-09-11 00:01:03 +02:00 committed by GitHub
commit 05a1854fa3

View file

@ -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 between `a` and `b`. The test is: `a ≤ arr[i] ≤ b`.
The function should only modify the array. It should not return anything.