DSA Day 72/100
Topic: Matrix
Questions Successfully Completed: 1
1) Add two MatrixEasy
QuestionInput: n1 = 2, m1 = 3 A[][] = {{1, 2, 3}, {4, 5, 6}} n2 = 2, m2 = 3 B[][] = {{1, 3, 3}, {2, 3, 3}} Output: 2 5 6 6 8 9 Explanation: The summation matrix of A and B is: r...
preetikaprakash.hashnode.dev1 min read