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 e757622 commit f29fd30Copy full SHA for f29fd30
tests/selection_sortTest.py
@@ -14,5 +14,5 @@ def test_selection_sort(test):
14
"""functie `selection_sort` werkt correct"""
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")([]) == []
- assert getFunction("selection_sort")([[1],[3],[2]]) == [[1],[2],[3]]
0 commit comments