Skip to content

Commit 5749f74

Browse files
committed
BubbleSort: Fehlende Klammer ergänzt.
1 parent 0d48f73 commit 5749f74

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Level_03/bubblesort.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def get_random_list(n):
66
random.shuffle(result)
77
return result
88

9-
n = int(input("Länge der Liste: ")
9+
n = int(input("Länge der Liste: "))
1010
unsortet_list = get_random_list(n)
1111

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

0 commit comments

Comments
 (0)