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))
|
829 Solvers
How to find the position of an element in a vector without using the find function
2477 Solvers
Number of 1s in a binary string
2824 Solvers
Calculate the area of a triangle between three points
874 Solvers
2338 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!