Update adaptive_merge_sort.py

This commit is contained in:
ANANT JAIN 2024-10-17 01:37:38 +05:30 committed by GitHub
parent ddfcaecb77
commit b08a35c5d8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,4 +1,4 @@
def adaptive_merge_sort(sequence: list) -> list:
def adaptive_merge_sort(sequence: list) -> list:
"""
Sorts a list using the Adaptive Merge Sort algorithm.