Skip to content

Commit 00bf08b

Browse files
committed
viewing issue
1 parent 09574cb commit 00bf08b

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

en/Sorting Algorithms/Merge Sort.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,10 @@ Average - O(n log n)
1818
Worst case - O(n log n)
1919
```
2020

21-
The time complexity can be obtained by solving the below recurrance relation
22-
\begin{equation*}
23-
\begin{aligned}
24-
T(n) = 2T\left(\frac{n}{2}\right) + An
25-
\end{aligned}
26-
\end{equation*}
21+
The time complexity can be obtained by solving the below recurrence relation:
22+
23+
$$T(n) = 2T\left(\frac{n}{2}\right) + An$$
24+
2725

2826

2927
#### Space Complexity

0 commit comments

Comments
 (0)