A valid solution at time of submission. [But will not be accepted in new Cody submissions, per comment on Solution 894324.]
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
circle = [0, 0, 1]; Points = [0, 0.5]
y_correct = 1;
assert(isequal(your_fcn_name(Points,circle),y_correct))
Points =
0 0.5000
ans =
1
|
2 | Pass |
%%
circle = [0, 0, 1]; Points = [0, 2]
y_correct = 0;
assert(isequal(your_fcn_name(Points,circle),y_correct))
Points =
0 2
ans =
0
|
3 | Pass |
%%
circle = [1, 1, 1]; Points = [0, 1; 0, 0]
y_correct = [1; 0];
assert(isequal(your_fcn_name(Points,circle),y_correct))
Points =
0 1
0 0
ans =
1
0
|
Make the vector [1 2 3 4 5 6 7 8 9 10]
35554 Solvers
5703 Solvers
4598 Solvers
Check to see if a Sudoku Puzzle is Solved
278 Solvers
199 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!