Skip to content

Commit

Permalink
init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Haleshot committed Sep 9, 2024
1 parent f528a25 commit 07b0d9b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions medium/Matrix_Transformation/Matrix_Transformation.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import numpy as np

def transform_matrix(A: list[list[int|float]], T: list[list[int|float]], S: list[list[int|float]]) -> list[list[int|float]]:
return transformed_matrix

def transform_matrix(
A: list[list[int | float]], T: list[list[int | float]], S: list[list[int | float]]
) -> list[list[int | float]]:
return transformed_matrix

0 comments on commit 07b0d9b

Please sign in to comment.