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))
|
1104 Solvers
Find common elements in matrix rows
811 Solvers
Number of 1s in a binary string
1232 Solvers
Determine Whether an array is empty
561 Solvers
1246 Solvers