This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 NaN ; 4 NaN 6];
y_correct = 1;
assert(isequal(CheckData(x),y_correct))
x =
1
4
2
NaN
NaN
6
nancount =
2
|
2 | Pass |
x = [0 NaN 53;NaN NaN 77;NaN NaN NaN;56 60 84];
y_correct = 0;
assert(isequal(CheckData(x),y_correct))
x =
0
NaN
NaN
56
NaN
NaN
NaN
60
53
77
NaN
84
nancount =
6
|
3 | Pass |
x = [31 NaN 41;NaN NaN 55;NaN NaN 12];
y_correct = 0;
assert(isequal(CheckData(x),y_correct))
x =
31
NaN
NaN
NaN
NaN
NaN
41
55
12
nancount =
5
|
7677 Solvers
474 Solvers
206 Solvers
167 Solvers
168 Solvers