Given a matrix, find the average of the second largest values in each row. The same value does not exist on a row.

Example: input x = [1 2 3 4;8 7 6 5;9 0 1 4] >>> output y = (3+7+4) / 3

Solution Stats

112 Solutions

52 Solvers

Last Solution submitted on Dec 05, 2024

Last 200 Solutions

Solution Comments

Show comments
Loading...