Codacy style changes for test files
This commit is contained in:
@ -5,5 +5,4 @@ const binarySearch = (arr, val, start = 0, end = arr.length - 1) => {
|
||||
if (arr[mid] < val) return binarySearch(arr, val, mid + 1, end);
|
||||
return mid;
|
||||
};
|
||||
|
||||
module.exports = binarySearch;
|
||||
module.exports = binarySearch;
|
||||
|
||||
Reference in New Issue
Block a user