fix: comment in patience sort (#4972)

This commit is contained in:
Nolan Emirot 2021-10-03 20:33:42 -07:00 committed by GitHub
parent c873fa0b1b
commit d530d2bcf4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@ class Stack(list):
def patience_sort(collection: list) -> list: def patience_sort(collection: list) -> list:
"""A pure implementation of quick sort algorithm in Python """A pure implementation of patience sort algorithm in Python
:param collection: some mutable ordered collection with heterogeneous :param collection: some mutable ordered collection with heterogeneous
comparable items inside comparable items inside