Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
s1 = [1 2 3 4 5];
s2 = [5 4 3 2];
s3_correct = [1 2 3 4 5 4 3 2];
assert(isequal(overlap(s1,s2),s3_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 overlap (line 2)
In ScoringEngineTestPoint1 (line 4)
In solutionTest (line 3)]
|
2 | Pass |
s1 = [1 0 1 7 7 7 6];
s2 = [1 0 1 0 1];
s3_correct = [1 0 1 0 1 7 7 7 6];
assert(isequal(overlap(s1,s2),s3_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 overlap (line 2)
In ScoringEngineTestPoint2 (line 4)
In solutionTest (line 5)]
|
3 | Pass |
s1 = [3 1 4 1 5 9 2 6 5 3 5];
s2 = [9 2 6 5];
s3_correct = [3 1 4 1 5 9 2 6 5 3 5];
assert(isequal(overlap(s1,s2),s3_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 overlap (line 2)
In ScoringEngineTestPoint3 (line 4)
In solutionTest (line 7)]
|
4 | Pass |
s1 = 1:100;
s2 = [50 51];
s3_correct = s1;
assert(isequal(overlap(s1,s2),s3_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 overlap (line 2)
In ScoringEngineTestPoint4 (line 4)
In solutionTest (line 9)]
|
5 | Pass |
s1 = 90:10:200;
s2 = 10:10:120;
s3_correct = 10:10:200;
assert(isequal(overlap(s1,s2),s3_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 overlap (line 2)
In ScoringEngineTestPoint5 (line 4)
In solutionTest (line 11)]
|
1913 Solvers
Project Euler: Problem 9, Pythagorean numbers
157 Solvers
Generate N equally spaced intervals between -L and L
440 Solvers
213 Solvers
Is this triangle right-angled?
1918 Solvers