(matrix: list[list[int]])
| 67 | |
| 68 | |
| 69 | def reverse_row(matrix: list[list[int]]) -> list[list[int]]: |
| 70 | matrix[:] = matrix[::-1] |
| 71 | return matrix |
| 72 | |
| 73 | |
| 74 | def reverse_column(matrix: list[list[int]]) -> list[list[int]]: |
no outgoing calls
no test coverage detected