Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
v = [1,2,5,6,7,8,9,20,21,22,30,31,32,33,34,35,40,41,42,43,44];
distances = [21 5];
assert(isequal(rundistances(v),distances))
|
2 | Pass |
v = [1:2:10, 14:20, 22, 23, 30:35, 37:39, 41:50, 52, 54:58, 60, 62];
distances = [30-20, 41-35, 54-50];
assert(isequal(rundistances(v),distances))
|
3 | Pass |
v = [-1 5:9 14 70:76 82];
distances = [70-9];
assert(isequal(rundistances(v),distances))
|
4 | Pass |
v = 1:100;
assert(isempty(rundistances(v)))
|
5 | Pass |
v = [1:3:100];
assert(isempty(rundistances(v)))
|
Is my wife right? Now with even more wrong husband
1241 Solvers
1051 Solvers
462 Solvers
60 Solvers
47 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!