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 3 4 5;...
6 7 8 9 10];
y_correct = [3 2 9 4 15;...
6 21 8 27 10];
assert(isequal(oddX3(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 unix (line 32)
In oddX3 (line 2)
In ScoringEngineTestPoint1 (line 5)
In solutionTest (line 3)]
|
2 | Pass |
x =[40 71 5;...
66 4 10;...
18 28 83];
y_correct = [40 213 15;...
66 4 10;...
18 28 249];
assert(isequal(oddX3(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 unix (line 32)
In oddX3 (line 2)
In ScoringEngineTestPoint2 (line 7)
In solutionTest (line 5)]
|
Back to basics 4 - Search Path
280 Solvers
624 Solvers
185 Solvers
Find the Nth Root of a Given Number
124 Solvers
197 Solvers