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 |
x = 2;
y_correct = 12.57;
assert(isequal(crcl_area(x),y_correct))
ans =
12.5700
|
2 | Pass |
x = 12;
y_correct = 452.39;
assert(abs(y_correct-crcl_area(x)) <= 0.01)
ans =
452.3900
|
Increment a number, given its digits
505 Solvers
Back to basics 19 - character types
189 Solvers
Matrix indexing with two vectors of indices
406 Solvers
201 Solvers
Sum of the Multiplication of Vectors
152 Solvers