This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 9;
y_correct = 1;
assert(isequal(Armstrong(x),y_correct))
dig =
1
z =
9
y =
1
|
2 | Pass |
%%
x = 371;
y_correct = 1;
assert(isequal(Armstrong(x),y_correct))
dig =
3
z =
371
y =
1
|
3 | Pass |
%%
x = 407;
y_correct = 1;
assert(isequal(Armstrong(x),y_correct))
dig =
3
z =
407
y =
1
|
4 | Pass |
%%
x = 1634;
y_correct = 1;
assert(isequal(Armstrong(x),y_correct))
dig =
4
z =
1634
y =
1
|
5 | Pass |
%%
x = 68955;
y_correct = 0;
assert(isequal(Armstrong(x),y_correct))
dig =
5
z =
105843
y =
0
|
6 | Pass |
%%
x = 548834;
y_correct = 1;
assert(isequal(Armstrong(x),y_correct))
dig =
6
z =
548834
y =
1
|
7 | Pass |
%%
x = 1741725;
y_correct = 1;
assert(isequal(Armstrong(x),y_correct))
dig =
7
z =
1741725
y =
1
|
900 Solvers
235 Solvers
856 Solvers
3065 Solvers
414 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!