mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-04-18 03:19:35 +00:00
[PR #921] fix: merge sort bug #1454
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Original Pull Request: https://github.com/TheAlgorithms/C/pull/921
State: closed
Merged: Yes
Merge sort does not work properly. To reproduce the bug input 6, 5, 4, 3, 2, 1 the output would be 2, 3, 1, 4, 5, 6.
Description of Change
References
Checklist
Notes: