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))
[Warning: Colon operands must be real scalars.]
[> In find_vampire at 3
In verifyCode>evaluateCode at 238
In verifyCode at 43
In fevalJSON at 14]
|
6 | Pass |
%%
x = 125000:125501;
v = find_vampire(x);
v_correct = [125248 125433 125460 125500];
assert(isequal(v,v_correct))
|
1223 Solvers
556 Solvers
Project Euler: Problem 1, Multiples of 3 and 5
1492 Solvers
Given a window, how many subsets of a vector sum positive
743 Solvers
Cell Counting: How Many Draws?
581 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!