A different approach to Matrix multiplication using Strassen's Algorithm
https://youtu.be/sZxjuT1kUd0
List of matrices on which we are going to run and compare our functions
# 4x4 and 4x3 matrices
mat3 = [
[5,2,3,1],
[7,6,4,2],
[5,6,7,5],
[5,7,9,7]
]
mat4 = [
[5,2,3],
[7,6,4],
[5,6,7],
[5...