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))
k =
4 5
t =
4
H =
3
H =
3 4
H =
3 4 3
H =
3 4 3 1
f =
1
r =
4
|
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))
k =
5 4
t =
5
H =
2
H =
2 3
H =
2 3 1
H =
2 3 1 2
H =
2 3 1 2 4
f =
1
r =
3
|
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))
k =
5 3
t =
5
H =
2
H =
2 3
H =
2 3 3
H =
2 3 3 3
H =
2 3 3 3 1
f =
1
r =
5
|
4 | Pass |
a = [ ...
0
0
0
-3
0
0];
r_correct = 4;
assert(isequal(fullest_row(a),r_correct))
k =
6 1
t =
6
H =
1
H =
1 1
H =
1 1 1
H =
1 1 1 0
H =
1 1 1 0 1
H =
1 1 1 0 1 1
f =
0
r =
4
|
Return the 3n+1 sequence for n
6167 Solvers
Find the alphabetic word product
2321 Solvers
Given an unsigned integer x, find the largest y by rearranging the bits in x
780 Solvers
Cell Counting: How Many Draws?
581 Solvers
convert matrix to single column
306 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!