Skip to content

Commit ba96812

Browse files
committed
style: format circle_sort
1 parent 6258663 commit ba96812

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

sorts/circle_sort.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,7 @@ def circle_sort[T: Comparable](
5050
if len(collection) < 2:
5151
return collection
5252

53-
def circle_sort_util(
54-
collection: MutableSequence[T], low: int, high: int
55-
) -> bool:
53+
def circle_sort_util(collection: MutableSequence[T], low: int, high: int) -> bool:
5654
"""
5755
>>> arr = [5,4,3,2,1]
5856
>>> circle_sort_util(arr, 0, 2)

0 commit comments

Comments
 (0)