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 |
%%
r = 2;
y_correct = 16;
assert(isequal(area_sqr(r),y_correct))
|
2 | Pass |
%%
r = 3;
y_correct = 36;
assert(isequal(area_sqr(r),y_correct))
|
3 | Pass |
%%
r = 25;
y_correct = 2500;
assert(isequal(area_sqr(r),y_correct))
|
298 Solvers
Given a matrix, return the last eigen value
137 Solvers
Given a 4x4 matrix, swap the two middle columns
299 Solvers
325 Solvers
242 Solvers