Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 0f83eaf

Browse files
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)

AltStyle によって変換されたページ (->オリジナル) /