We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37e2607 commit 978f426Copy full SHA for 978f426
contents/bogo_sort/code/python/bogo.py
@@ -12,7 +12,7 @@ def bogo_sort(a):
12
random.shuffle(a)
13
14
def main():
15
- a = [1., 3, 2, 4]
+ a = [1, 3, 2, 4]
16
bogo_sort(a)
17
print(a)
18
0 commit comments