MCPcopy 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
165def _check_not_integer(matrix: list[list[int]]) -> bool:
166 return not isinstance(matrix, int) and not isinstance(matrix[0], int)
167
168
169def _shape(matrix: list[list[int]]) -> tuple[int, int]:

Callers 4

addFunction · 0.85
subtractFunction · 0.85
multiplyFunction · 0.85
transposeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected