MCPcopy Create free account
hub / github.com/TheAlgorithms/Python / print_matrix

Function print_matrix

matrix/rotate_matrix.py:79–81  ·  view source on GitHub ↗
(matrix: list[list[int]])

Source from the content-addressed store, hash-verified

77
78
79def print_matrix(matrix: list[list[int]]) -> None:
80 for i in matrix:
81 print(*i)
82
83
84if __name__ == "__main__":

Callers 1

rotate_matrix.pyFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected