Closed dimitrijjedich closed 11 months ago
SonarCloud Quality Gate failed.
0 Bugs
0 Vulnerabilities
0 Security Hotspots
7 Code Smells
0.0% Coverage
0.0% Duplication
Catch issues before they fail your Quality Gate with our IDE extension SonarLint
This PR extends the project by the merge sort algorithm. The algorithm does the workies like this: The array is split recursive into smaller and smaller parts until broken down to one or no element arrays. This arrays then are merged by itterating over both arrays and placing them in the result array according to the sorting order. The resulting (now bigger array) is then passed up the recursive chain and the process repeated, until the first layer of recursion is reached and the final merge resturns the now sorted array.