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))
Error: Dimensions of matrices being concatenated are not consistent.
|
2 | Fail |
%%
x = 1:999;
v = find_vampire(x);
assert(isempty(v))
Error: Dimensions of matrices being concatenated are not consistent.
|
3 | Fail |
%%
x = reshape(2000:2999,100,[]);
v = find_vampire(x);
v_correct = 2187;
assert(isequal(v,v_correct))
Error: Output argument "y" (and maybe others) not assigned during call to "/users/msssystem10/find_vampire.m>find_vampire".
|
4 | Fail |
%%
x = [];
v = find_vampire(x);
assert(isempty(v))
Error: Output argument "y" (and maybe others) not assigned during call to "/users/msssystem10/find_vampire.m>find_vampire".
|
5 | Fail |
%%
x = -2000:-1000;
v = find_vampire(x);
assert(isempty(v))
Error: Output argument "y" (and maybe others) not assigned during call to "/users/msssystem10/find_vampire.m>find_vampire".
|
6 | Fail |
%%
x = 125000:125501;
v = find_vampire(x);
v_correct = [125248 125433 125460 125500];
assert(isequal(v,v_correct))
Error: Dimensions of matrices being concatenated are not consistent.
|
1092 Solvers
Implement simple rotation cypher
943 Solvers
505 Solvers
400 Solvers
323 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!