[x,r]=max(sum(a~=0,2))
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = [ ...
1 2 0 0 0
0 0 5 0 0
2 7 0 0 0
0 6 9 3 3];
r_correct = 4;
assert(isequal(fullest_row(a),r_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In fullest_row (line 2)
In ScoringEngineTestPoint1 (line 7)
In solutionTest (line 3)]
|
2 | Pass |
a = [ ...
1 2 0 0
0 0 5 0
0 6 9 -3
2 7 0 0
0 0 0 0];
r_correct = 3;
assert(isequal(fullest_row(a),r_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In fullest_row (line 2)
In ScoringEngineTestPoint2 (line 8)
In solutionTest (line 5)]
|
3 | Pass |
a = [ ...
1 0 0
0 0 0
0 0 0
0 0 0
0 2 3];
r_correct = 5;
assert(isequal(fullest_row(a),r_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In fullest_row (line 2)
In ScoringEngineTestPoint3 (line 8)
In solutionTest (line 7)]
|
4 | Pass |
a = [ ...
0
0
0
-3
0
0];
r_correct = 4;
assert(isequal(fullest_row(a),r_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In fullest_row (line 2)
In ScoringEngineTestPoint4 (line 9)
In solutionTest (line 9)]
|
What is the next step in Conway's Life?
640 Solvers
1052 Solvers
620 Solvers
Given a window, how many subsets of a vector sum positive
743 Solvers
We love vectorized solutions. Problem 1 : remove the row average.
547 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!