Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/TheAlgorithms/Python
/ _check_not_integer
Function
_check_not_integer
matrix/matrix_operation.py:165–166 ·
view source on GitHub ↗
(matrix: list[list[int]])
Source
from the content-addressed store, hash-verified
163
164
165
def
_check_not_integer(matrix: list[list[int]]) -> bool:
166
return
not isinstance(matrix, int) and not isinstance(matrix[0], int)
167
168
169
def
_shape(matrix: list[list[int]]) -> tuple[int, int]:
Callers
4
add
Function · 0.85
subtract
Function · 0.85
multiply
Function · 0.85
transpose
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected