Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 1;1 0;1 26; 26 0; 26 26 ;0 1;1 1]
y_correct =[1 26
1 1
1 0
26 0
0 1
1 1
26 26];
assert(isequal(strongMagnet(x),y_correct))
x =
1 1
1 0
1 26
26 0
26 26
0 1
1 1
|
2 | Pass |
x = 26*ones(26,26);
y_correct = x;
assert(isequal(strongMagnet(x),y_correct))
|
3 | Pass |
x = zeros(26,26);
y_correct = x;
assert(isequal(strongMagnet(x),y_correct))
|
4 | Pass |
x = [1 26; 3 26; 26 26; 0 0; -12 nan; 26 26]
y_correct = [26 26
1 26
3 26
0 0
-12 NaN
26 26];
assert(isequalwithequalnans(strongMagnet(x),y_correct))
x =
1 26
3 26
26 26
0 0
-12 NaN
26 26
|
Replace NaNs with the number that appears to its left in the row.
2018 Solvers
Find state names that start with the letter N
599 Solvers
594 Solvers
First non-zero element in each column
593 Solvers
1174 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!