Tree_sort.py: Disable slow doctest (#10584)

This commit is contained in:
Christian Clauss 2023-10-16 16:17:48 +02:00 committed by GitHub
parent 7acf4bf73b
commit 3923e590d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,8 +52,9 @@ def tree_sort(arr: list[int]) -> tuple[int, ...]:
(-4, 2, 5, 7, 9)
>>> tree_sort([5, 6, 1, -1, 4, 37, 2, 7])
(-1, 1, 2, 4, 5, 6, 7, 37)
>>> tree_sort(range(10, -10, -1)) == tuple(sorted(range(10, -10, -1)))
True
# >>> tree_sort(range(10, -10, -1)) == tuple(sorted(range(10, -10, -1)))
# True
"""
if len(arr) == 0:
return tuple(arr)