We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ede3f0 commit bc17c41Copy full SHA for bc17c41
tests/selection_sortTest.py
@@ -15,5 +15,5 @@ def test_selection_sort(test):
15
assert getFunction("selection_sort")([1,2,3]) == [1,2,3]
16
assert getFunction("selection_sort")([3,2,1]) == [1,2,3]
17
assert getFunction("selection_sort")([1,3,2,4]) == [1,2,3,4]
18
- assert getFunction("selection_sort")([]) == []:
19
-
+ assert getFunction("selection_sort")([]) == []
+
0 commit comments