Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
79
def
print_matrix(matrix: list[list[int]]) -> None:
80
for
i in matrix:
81
print(*i)
82
83
84
if
__name__ ==
"__main__"
:
Callers
1
rotate_matrix.py
File · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected