Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x = [3 4 5];
y_correct = 2.5;
assert(isequal(circle_radius(x),y_correct))
|
2 | Fail |
x = [3 4 3];
y_correct = 2.0125;
assert(abs(circle_radius(x)-y_correct)<.0001)
|
3 | Fail |
x = [1 2 sqrt(3)];
y_correct = 1.0000;
assert(abs(circle_radius(x)-y_correct)<.0001)
|
Check to see if a Sudoku Puzzle is Solved
279 Solvers
309 Solvers
228 Solvers
484 Solvers
486 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!