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))
|
Return the 3n+1 sequence for n
6167 Solvers
Back to basics 20 - singleton dimensions
254 Solvers
746 Solvers
Replace multiples of 5 with NaN
358 Solvers
404 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!