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))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function
to avoid a potential name conflict.]
[> In replaceNaN (line 2)
In evaluateCode', '/users/mss.system.WuKllk/+cody/verifyCode.m', 238)" style="font-weight:bold">cody.verifyCode>evaluateCode (line 238)
In cody.verifyCode (line 43)
In mls.internal.fevalJSON (line 14)]
|
2 | Pass |
%%
x =[ 1 NaN 1 NaN 1];
y_correct =[ NaN NaN NaN NaN NaN NaN NaN NaN ];
assert(isequalwithequalnans(replaceNaN(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function
to avoid a potential name conflict.]
[> In replaceNaN (line 2)
In evaluateCode', '/users/mss.system.WuKllk/+cody/verifyCode.m', 238)" style="font-weight:bold">cody.verifyCode>evaluateCode (line 238)
In cody.verifyCode (line 43)
In mls.internal.fevalJSON (line 14)]
|
Find the alphabetic word product
1997 Solvers
Project Euler: Problem 6, Natural numbers, squares and sums.
782 Solvers
140 Solvers
404 Solvers
244 Solvers