You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sorts: make quick_sort work with any Comparable, not just int
Use a Comparable Protocol + TypeVar bound so that quick_sort
correctly expresses it can sort any orderable type, not just
integers. Simplifies partitioning to cleaner lesser/equal/greater
lists and adds string + float doctest examples.
Part of #15234
0 commit comments