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 =
2
|
2 | Pass |
%%
x = 1234567890;
y_correct = 49;
assert(isequal(seven_seg_led(x),y_correct))
ans =
49
|
3 | Pass |
%%
x = 222444666888000;
y_correct = 84;
assert(isequal(seven_seg_led(x),y_correct))
ans =
84
|
54207 Solvers
2183 Solvers
204 Solvers
Convert a vector into a number
503 Solvers
07 - Common functions and indexing 5
314 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!