This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1;
y_correct = 2;
assert(isequal(seven_seg_led(x),y_correct))
ans =
Columns 1 through 16
-2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2
Columns 17 through 32
-2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2
Columns 33 through 48
-2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 6
Columns 49 through 57
2 5 5 4 5 6 3 7 6
ans =
2
|
2 | Pass |
%%
x = 1234567890;
y_correct = 49;
assert(isequal(seven_seg_led(x),y_correct))
ans =
Columns 1 through 16
-2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2
Columns 17 through 32
-2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2
Columns 33 through 48
-2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 6
Columns 49 through 57
2 5 5 4 5 6 3 7 6
ans =
49
|
3 | Pass |
%%
x = 222444666888000;
y_correct = 84;
assert(isequal(seven_seg_led(x),y_correct))
ans =
Columns 1 through 16
-2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2
Columns 17 through 32
-2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2
Columns 33 through 48
-2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 6
Columns 49 through 57
2 5 5 4 5 6 3 7 6
ans =
84
|
Read a column of numbers and interpolate missing data
1235 Solvers
579 Solvers
584 Solvers
07 - Common functions and indexing 5
314 Solvers
276 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!