We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70a90bd commit a255433Copy full SHA for a255433
include/merge_sort.h
@@ -13,8 +13,8 @@
13
* and right part.
14
* Example: Say the input is -10 32 45 -78 91 1 0 -16 then the left part will be
15
* -10 32 45 -78 and the right part will be 91 1 0 6.
16
- * (2) Sort Each of them seperately. Note that here sort does not mean to sort it using some other
17
- * method. We already wrote fucntion to sort it. Use the same.
+ * (2) Sort Each of them separately. Note that here sort does not mean to sort it using some other
+ * method. We already wrote function to sort it. Use the same.
18
* (3) Then merge the two sorted parts.
19
*
20
* ------------
0 commit comments