From 60dfaed9bb17ca8dcf43239d66edb4d9442ce97d Mon Sep 17 00:00:00 2001 From: fischerth80683 Date: Thu, 6 Nov 2025 14:23:27 +0100 Subject: [PATCH] compute is back? and updated with tabulate --- compute.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/compute.py b/compute.py index aed0f5a..b275f3e 100644 --- a/compute.py +++ b/compute.py @@ -1,4 +1,9 @@ import math +from tabulate import tabulate + +##print("Matrix A:") +##print(tabulate(matrix_a)) + def matmul(mA:list[list[int]], mB:list[list[int]]) -> list[list[int]]: """