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 |
xyz = [3,4,2; 0,0,2; 0,1,2; 1,1,2; 1,1,20];
w_correct = 25;
assert(isequal(walked(xyz),w_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 walked (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
xyz = [3,4,2; 0,0,2; 0,1,2; 1,1,2; 1,5,5];
w_correct = 12;
assert(isequal(walked(xyz),w_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 walked (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
Back to basics 12 - Input Arguments
467 Solvers
178 Solvers
Sum the elements in either diagonal of a square matrix
145 Solvers
Generate a random matrix A of (1,-1)
161 Solvers
Side of an equilateral triangle
1521 Solvers