Problem 32. Most nonzero elements in row

Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row that matches this criterion.

Example:

 Input  a = [ 1 2 0 0 0
              0 0 5 0 0 
              2 7 0 0 0
              0 6 9 3 3 ]
 Output r is 4

Solution Stats

43.64% Correct | 56.36% Incorrect
Last Solution submitted on Mar 28, 2024

Problem Comments

Solution Comments

Show comments


Problem Recent Solvers7141

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!