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 1 3 7 NaN 1 4 NaN 2];
y_correct =[ NaN NaN 2 NaN 4 NaN NaN 3 7 NaN NaN NaN 4 NaN 2];
assert(isequalwithequalnans(replaceNaN(x),y_correct))
y =
NaN NaN 2 NaN 4 NaN NaN 3 7 NaN NaN NaN 4 NaN 2
|
2 | Pass |
x =[ 1 NaN 1 NaN 1];
y_correct =[ NaN NaN NaN NaN NaN NaN NaN NaN ];
assert(isequalwithequalnans(replaceNaN(x),y_correct))
y =
NaN NaN NaN NaN NaN NaN NaN NaN
|
8415 Solvers
Project Euler: Problem 7, Nth prime
339 Solvers
Remove from a 2-D matrix all the rows that contain at least one element less than or equal to 4
123 Solvers
Replace multiples of 5 with NaN
282 Solvers
Given a 4x4 matrix, swap the two middle columns
300 Solvers