adding a back-tick ( ` )

Adding a back-tick to correct code highlighter
This commit is contained in:
kitiya 2017-09-08 13:09:17 -06:00 committed by GitHub
parent 8b14175990
commit c6e1e78193

View file

@ -4,7 +4,7 @@ importance: 4
# Filter range "in place" # 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. The function should only modify the array. It should not return anything.