Skip to content

Commit d0ee7c6

Browse files
author
dodo
committed
type hinting
1 parent f334ac1 commit d0ee7c6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Level_03/Aufgaben/bubblesort.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def get_random_list(n: int) -> list:
1111

1212
# Bitte die Zeilen 1-12 unverändert lassen
1313

14-
def bubblesort(unsorted_list):
14+
def bubblesort(unsorted_list: list) -> list:
1515
changed = True
1616
while changed:
1717
changed = False

0 commit comments

Comments
 (0)