cheating
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))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In find_vampire (line 2)
In ScoringEngineTestPoint1 (line 2)
In solutionTest (line 3)]
|
2 | Pass |
x = 1:999;
v = find_vampire(x);
assert(isempty(v))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In find_vampire (line 2)
In ScoringEngineTestPoint2 (line 2)
In solutionTest (line 5)]
|
3 | Pass |
x = reshape(2000:2999,100,[]);
v = find_vampire(x);
v_correct = 2187;
assert(isequal(v,v_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In find_vampire (line 2)
In ScoringEngineTestPoint3 (line 2)
In solutionTest (line 7)]
|
4 | Pass |
x = [];
v = find_vampire(x);
assert(isempty(v))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In find_vampire (line 2)
In ScoringEngineTestPoint4 (line 2)
In solutionTest (line 9)]
|
5 | Pass |
x = -2000:-1000;
v = find_vampire(x);
assert(isempty(v))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In find_vampire (line 2)
In ScoringEngineTestPoint5 (line 2)
In solutionTest (line 11)]
|
6 | Pass |
x = 125000:125501;
v = find_vampire(x);
v_correct = [125248 125433 125460 125500];
assert(isequal(v,v_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In find_vampire (line 2)
In ScoringEngineTestPoint6 (line 2)
In solutionTest (line 13)]
|
Find relatively common elements in matrix rows
865 Solvers
Make a run-length companion vector
512 Solvers
Determine the number of odd integers in a vector
435 Solvers
483 Solvers
389 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!