Skip to content

Commit 0f83eaf

Browse files
authored
Remove trailing spaces
1 parent da7fc33 commit 0f83eaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Maths/FindMaxRecursion.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function findMaxRecursion (arr, left, right) {
3131

3232
// n >> m is equivalent to floor(n / pow(2, m)), floor(n / 2) in this case, which is the mid index
3333
const mid = (left + right) >> 1
34-
34+
3535
const leftMax = findMaxRecursion(arr, left, mid)
3636
const rightMax = findMaxRecursion(arr, mid + 1, right)
3737

0 commit comments

Comments
 (0)