Update merge_sort.py

This commit is contained in:
NoodlesIAte 2024-10-04 20:02:07 +05:30 committed by GitHub
parent 6c58be4cf9
commit 6b60215fb5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,7 +18,7 @@ def merge_sort(collection: list) -> list:
:return: The same collection ordered in ascending order.
Time Complexity: O(n log n)
Space Complexity: O(n) due to the temporary arrays created during the merging process.
Space Complexity: O(n)
Examples:
>>> merge_sort([0, 5, 3, 2, 2])