alumathpeergroup7 Matrix multiplication library. Installation pip install alumathp7 ## Usage from alumathgroup.matrix import multiply A = [[1, 2], [3, 4]] B = [[5], [6]] result = multiply(A, B) print(result)