0
How to find the minimum element of each row and its index in matrix?
Matrix A=(n,n)
4 Answers
+ 3
I would check out Numpy... đ
https://code.sololearn.com/cJ7J2wdDzje2/?ref=app
+ 1
For Loop through the matrix, that should produce every row, then check for minimum values. If you have some code share it, I think it will help
+ 1
Steven M thank you!đ I'll try to understand