Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 0;
y_correct = 0;
assert(isequal(area_square(x),y_correct))
b =
0
|
2 | Pass |
x = 1;
y_correct = 1;
assert(isequal(area_square(x),y_correct))
b =
1
|
3 | Pass |
x = 11;
y_correct = 121;
assert(isequal(area_square(x),y_correct))
b =
121
|
4 | Pass |
x = 101;
y_correct = 10201;
assert(isequal(area_square(x),y_correct))
b =
10201
|
Back to basics 8 - Matrix Diagonals
781 Solvers
394 Solvers
3064 Solvers
Given a 4x4 matrix, swap the two middle columns
515 Solvers
Integer Sequence - II : New Fibonacci
252 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!