We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 195e80b commit c290ed0Copy full SHA for c290ed0
algorithms/sorting/merge_sort.m
@@ -1,4 +1,4 @@
1
-%% Merg sorting Algorithm:
+%% Merge sorting Algorithm:
2
function y = merge_sort(x)
3
% function to sort vector 'x' with using the merge sort algorithm
4
% INPUT: 'x' array
@@ -33,4 +33,4 @@
33
% The next y-value is less than the next x-value
34
z(iz) = y(iy); iy = iy + 1;
35
end
36
-end
+end
0 commit comments