This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
cheating
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x = 1000:2000;
v = find_vampire(x);
v_correct = [1260 1395 1435 1530 1827];
assert(isequal(v,v_correct))
|
2 | Fail |
x = 1:999;
v = find_vampire(x);
assert(isempty(v))
|
3 | Fail |
x = reshape(2000:2999,100,[]);
v = find_vampire(x);
v_correct = 2187;
assert(isequal(v,v_correct))
|
4 | Fail |
x = [];
v = find_vampire(x);
assert(isempty(v))
|
5 | Fail |
x = -2000:-1000;
v = find_vampire(x);
assert(isempty(v))
|
6 | Fail |
x = 125000:125501;
v = find_vampire(x);
v_correct = [125248 125433 125460 125500];
assert(isequal(v,v_correct))
|
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!