(size: int, rand: random.Random)
| 48 | |
| 49 | |
| 50 | def list_sort_descending(size: int, rand: random.Random) -> list[float]: |
| 51 | return list(reversed(list_sort_ascending(size, rand))) |
| 52 | |
| 53 | |
| 54 | def list_sort_ascending(size: int, rand: random.Random) -> list[float]: |
nothing calls this directly
no test coverage detected
searching dependent graphs…