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 |
xy = [3,4; 0,0; 0,1; 1,1];
z_correct = 7;
assert(isequal(walked(xy),z_correct))
ans =
7
|
2 | Pass |
xy = [3,4; 0,0];
z_correct = 5;
assert(isequal(walked(xy),z_correct))
ans =
5
|
3 | Pass |
xy = [0,0; 5,12; 0,12];
z_correct = 18;
assert(isequal(walked(xy),z_correct))
ans =
18
|
846 Solvers
559 Solvers
1735 Solvers
307 Solvers
296 Solvers