Like it
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1000:2000;
v = find_vampire(x);
v_correct = [1260 1395 1435 1530 1827];
assert(isequal(v,v_correct))
|
2 | Pass |
%%
x = 1:999;
v = find_vampire(x);
assert(isempty(v))
|
3 | Pass |
%%
x = reshape(2000:2999,100,[]);
v = find_vampire(x);
v_correct = 2187;
assert(isequal(v,v_correct))
|
4 | Pass |
%%
x = [];
v = find_vampire(x);
assert(isempty(v))
|
5 | Pass |
%%
x = -2000:-1000;
v = find_vampire(x);
assert(isempty(v))
|
6 | Pass |
%%
x = 125000:125501;
v = find_vampire(x);
v_correct = [125248 125433 125460 125500];
assert(isequal(v,v_correct))
|
351 Solvers
Matrix with different incremental runs
249 Solvers
299 Solvers
Square Digits Number Chain Terminal Value (Inspired by Project Euler Problem 92)
168 Solvers
369 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!