Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [ 5 17 -20 99 3.4 2 8 -6 ];
y_correct = [ 5 NaN NaN NaN 3.4 2 8 NaN ];
assert(isequalwithequalnans(cleanUp(x),y_correct))
y =
Columns 1 through 6
5.0000 NaN NaN NaN 3.4000 2.0000
Columns 7 through 8
8.0000 NaN
|
2 | Pass |
%%
x = [ -2.80 -6.50 -12.60 4.00 2.20 0.20 -10.60 9.00];
y_correct = [ NaN NaN NaN 4.00 2.20 0.20 NaN 9.00]
assert(isequalwithequalnans(cleanUp(x),y_correct))
y_correct =
Columns 1 through 6
NaN NaN NaN 4.0000 2.2000 0.2000
Columns 7 through 8
NaN 9.0000
y =
Columns 1 through 6
NaN NaN NaN 4.0000 2.2000 0.2000
Columns 7 through 8
NaN 9.0000
|
Who knows the last digit of pi?
488 Solvers
Basic electricity in a dry situation
445 Solvers
Sum of first n terms of a harmonic progression
190 Solvers
Check that number is whole number
274 Solvers
Predicting life and death of a memory-less light bulb
244 Solvers