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))
|
205 Solvers
Return the first and last character of a string
1658 Solvers
Getting the indices from a matrice
265 Solvers
811 Solvers
The Answer to Life, the Universe, and Everything
312 Solvers