This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 0;
y_correct = 0;
assert(abs(your_fcn_name(x)-y_correct)<0.01)
2
ans =
2
|
2 | Pass |
x = pi/4;
y_correct = 1;
assert(abs(your_fcn_name(x)-y_correct)<0.01)
3
ans =
3
|
3 | Pass |
x = -pi/4;
y_correct = -1;
assert(abs(your_fcn_name(x)-y_correct)<0.01)
|
Check to see if a Sudoku Puzzle is Solved
232 Solvers
195 Solvers
325 Solvers
111 Solvers
Implement zero-based indexing for Matrices
44 Solvers