Something like h-index?

This commit is contained in:
2023-10-25 19:18:05 -04:00
parent 2f3ce704b2
commit d9393152c5
2 changed files with 57 additions and 0 deletions
+21
View File
@@ -310,3 +310,24 @@ def test_collect_complete_jump_paths_from_board(
)
def test_count_min_jumps_from_board(board: list[int], expected: int):
assert stuff.count_min_jumps_from_board(board) == expected
@pytest.mark.parametrize(
("citations", "expected"),
[
(
[3, 0, 6, 1, 5],
3,
),
(
[1, 3, 1],
1,
),
(
[100],
1,
),
],
)
def test_h_index(citations: list[int], expected: int):
assert stuff.h_index(citations) == expected