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))
y =
2
|
2 | Pass |
%%
x = 1234567890;
y_correct = 49;
assert(isequal(seven_seg_led(x),y_correct))
y =
2
y =
7
y =
12
y =
16
y =
21
y =
27
y =
30
y =
37
y =
43
y =
49
|
3 | Pass |
%%
x = 222444666888000;
y_correct = 84;
assert(isequal(seven_seg_led(x),y_correct))
y =
5
y =
10
y =
15
y =
19
y =
23
y =
27
y =
33
y =
39
y =
45
y =
52
y =
59
y =
66
y =
72
y =
78
y =
84
|
874 Solvers
199 Solvers
188 Solvers
find the maximum element of the matrix
349 Solvers
343 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!