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))
|
2 | Pass |
x = 371;
y_correct = 1;
assert(isequal(Armstrong(x),y_correct))
|
3 | Pass |
x = 407;
y_correct = 1;
assert(isequal(Armstrong(x),y_correct))
|
4 | Pass |
x = 1634;
y_correct = 1;
assert(isequal(Armstrong(x),y_correct))
|
5 | Pass |
x = 68955;
y_correct = 0;
assert(isequal(Armstrong(x),y_correct))
|
6 | Pass |
x = 548834;
y_correct = 1;
assert(isequal(Armstrong(x),y_correct))
|
7 | Pass |
x = 1741725;
y_correct = 1;
assert(isequal(Armstrong(x),y_correct))
|
1262 Solvers
Project Euler: Problem 1, Multiples of 3 and 5
1493 Solvers
Arrange Vector in descending order
4083 Solvers
Area of an equilateral triangle
2763 Solvers
1174 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!