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))
|
8406 Solvers
Sort a list of complex numbers based on far they are from the origin.
3792 Solvers
Maximum running product for a string of numbers
816 Solvers
Find the largest value in the 3D matrix
898 Solvers
Sum the numbers on the main diagonal
375 Solvers