codinasion-archive / codinasion-programme

An open source codebase for sharing programming solutions.
https://codinasion.vercel.app/programme
MIT License
62 stars 147 forks source link

Matrix Multiplication #565

Closed harshraj8843 closed 2 years ago

harshraj8843 commented 2 years ago

Title of article

Write a GO program to print multiplication of 2 matrices.

Additional information

First matrix

1  1  1
2  2  2 
3  3  3 

Second matrix

1  1  1
2  2  2 
3  3  3 

Product matrix

6  6  6
12 12 12
18 18 18

Code of Conduct

yogeshCt3 commented 2 years ago

working on it