Description
Adding this one here, as it's quite interesting :
Strassen multiplication algorithm is faster, with a complexity of approximately O(n^2.8074) , compared to O(n^3) for standard multiplication algorithm.
Strassen Matrix multiplication is based on a divide and conquer-based approach, by diving matrix into smaller square matrix
https://www.topcoder.com/thrive/articles/strassenss-algorithm-for-matrix-multiplication
Activity