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 = 1
length_correct = 3/sqrt(10);
width_correct = 1/sqrt(10);
[width, length] = findRectangleDimensions(x);
tolerance = 1e-12;
assert( abs(length-length_correct)<tolerance && abs(width-width_correct)<tolerance )
x =
1
|
2 | Pass |
x = 2;
width_correct = 2/sqrt(10);
length_correct = 6/sqrt(10);
[width, length] = findRectangleDimensions(x);
tolerance = 1e-12;
assert(abs(length-length_correct)<tolerance && abs(width-width_correct)<tolerance)
|
451 Solvers
Area of an equilateral triangle
1706 Solvers
194 Solvers
ベクトル [1 2 3 4 5 6 7 8 9 10] の作成
198 Solvers
299 Solvers