Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 2;
assert(isequal(seven_seg_led(x),y_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 seven_seg_led (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
x = 2;
y_correct = 5;
assert(isequal(seven_seg_led(x),y_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 seven_seg_led (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
x = 3;
y_correct = 5;
assert(isequal(seven_seg_led(x),y_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 seven_seg_led (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
4 | Pass |
x = 4;
y_correct = 4;
assert(isequal(seven_seg_led(x),y_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 seven_seg_led (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
5 | Pass |
x = 5;
y_correct = 5;
assert(isequal(seven_seg_led(x),y_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 seven_seg_led (line 2)
In ScoringEngineTestPoint5 (line 3)
In solutionTest (line 11)]
|
6 | Pass |
x = 6;
y_correct = 6;
assert(isequal(seven_seg_led(x),y_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 seven_seg_led (line 2)
In ScoringEngineTestPoint6 (line 3)
In solutionTest (line 13)]
|
7 | Pass |
x = 7;
y_correct = 3;
assert(isequal(seven_seg_led(x),y_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 seven_seg_led (line 2)
In ScoringEngineTestPoint7 (line 3)
In solutionTest (line 15)]
|
8 | Pass |
x = 8;
y_correct = 7;
assert(isequal(seven_seg_led(x),y_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 seven_seg_led (line 2)
In ScoringEngineTestPoint8 (line 3)
In solutionTest (line 17)]
|
9 | Pass |
x = 9;
y_correct = 6;
assert(isequal(seven_seg_led(x),y_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 seven_seg_led (line 2)
In ScoringEngineTestPoint9 (line 3)
In solutionTest (line 19)]
|
10 | Pass |
x = 0;
y_correct = 6;
assert(isequal(seven_seg_led(x),y_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 seven_seg_led (line 2)
In ScoringEngineTestPoint10 (line 3)
In solutionTest (line 21)]
|
11 | Pass |
x = 10;
y_correct = 8;
assert(isequal(seven_seg_led(x),y_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 seven_seg_led (line 2)
In ScoringEngineTestPoint11 (line 3)
In solutionTest (line 23)]
|
12 | Pass |
x = 42;
y_correct = 9;
assert(isequal(seven_seg_led(x),y_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 seven_seg_led (line 2)
In ScoringEngineTestPoint12 (line 3)
In solutionTest (line 25)]
|
13 | Pass |
x = 101010101;
y_correct = 34;
assert(isequal(seven_seg_led(x),y_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 seven_seg_led (line 2)
In ScoringEngineTestPoint13 (line 3)
In solutionTest (line 27)]
|
14 | Pass |
x = 1234567890;
y_correct = 49;
assert(isequal(seven_seg_led(x),y_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 seven_seg_led (line 2)
In ScoringEngineTestPoint14 (line 3)
In solutionTest (line 29)]
|
15 | Pass |
% x = 12345678987654321;
% y_correct = 86;
% assert(isequal(seven_seg_led(x),y_correct))
|
16 | Pass |
x = 222444666888000;
y_correct = 84;
assert(isequal(seven_seg_led(x),y_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 seven_seg_led (line 2)
In ScoringEngineTestPoint16 (line 3)
In solutionTest (line 33)]
|
657 Solvers
894 Solvers
163 Solvers
Compute a dot product of two vectors x and y
750 Solvers
249 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!