This commit is contained in:
lwj
2025-06-14 12:00:48 +08:00
parent 852ee942ef
commit a7213b61d4
2 changed files with 2 additions and 1 deletions

View File

@@ -51,6 +51,7 @@ def Det(A):
det += ((-1) ** c) * A[0][c] * Det(sub_matrix)
return det
#把矩阵换成题干的矩阵#########################
if __name__ == "__main__":
A =[
[1,0,1],