Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = false;
assert(isequal(multipleof9(x),y_correct))
|
2 | Pass |
x = 9;
y_correct = true;
assert(isequal(multipleof9(x),y_correct))
|
3 | Pass |
x = 10;
y_correct = false;
assert(isequal(multipleof9(x),y_correct))
|
4 | Pass |
x = 111222;
y_correct = true;
assert(isequal(multipleof9(x),y_correct))
|
Return the largest number that is adjacent to a zero
3751 Solvers
Back to basics 8 - Matrix Diagonals
782 Solvers
Sum the numbers on the main diagonal
453 Solvers
Find the Nth Root of a Given Number
187 Solvers
286 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!