From 8acc4ff3a43f1291b35c86446fb23c5390bbb07f Mon Sep 17 00:00:00 2001 From: BrSh31 Date: Tue, 28 Oct 2025 15:33:03 +0100 Subject: [PATCH] yo21 --- compute.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/compute.py b/compute.py index ea04c5a..ccb7b7c 100644 --- a/compute.py +++ b/compute.py @@ -1,5 +1,6 @@ from typing import List import math +from tabulate import tabulate def matmul(mat1: List[List[int]], mat2: List[List[int]]) -> List[List[int]]: """ @@ -93,6 +94,9 @@ def main(): for row in rot_2D(math.pi / 2): print(row) + print("Matrix A:") + print(tabulate(matrix_a)) + if __name__ == "__main__": main()