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))
m =
9
n =
1
y =
logical
1
|
2 | Pass |
x = 371;
y_correct = 1;
assert(isequal(Armstrong(x),y_correct))
m =
3 7 1
n =
3
y =
logical
1
|
3 | Pass |
x = 407;
y_correct = 1;
assert(isequal(Armstrong(x),y_correct))
m =
4 0 7
n =
3
y =
logical
1
|
4 | Pass |
x = 1634;
y_correct = 1;
assert(isequal(Armstrong(x),y_correct))
m =
1 6 3 4
n =
4
y =
logical
1
|
5 | Pass |
x = 68955;
y_correct = 0;
assert(isequal(Armstrong(x),y_correct))
m =
6 8 9 5 5
n =
5
y =
logical
0
|
6 | Pass |
x = 548834;
y_correct = 1;
assert(isequal(Armstrong(x),y_correct))
m =
5 4 8 8 3 4
n =
6
y =
logical
1
|
7 | Pass |
x = 1741725;
y_correct = 1;
assert(isequal(Armstrong(x),y_correct))
m =
1 7 4 1 7 2 5
n =
7
y =
logical
1
|
1965 Solvers
Create a vector whose elements depend on the previous element
391 Solvers
283 Solvers
483 Solvers
276 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!