Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 0;
y_correct = 0;
assert(isequal(area_square(x),y_correct))
|
2 | Pass |
x = 1;
y_correct = 1;
assert(isequal(area_square(x),y_correct))
|
3 | Pass |
x = 11;
y_correct = 121;
assert(isequal(area_square(x),y_correct))
|
4 | Pass |
x = 101;
y_correct = 10201;
assert(isequal(area_square(x),y_correct))
|
831 Solvers
How to find the position of an element in a vector without using the find function
2477 Solvers
351 Solvers
Find the maximum number of decimal places in a set of numbers
737 Solvers
Magic is simple (for beginners)
2753 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!