This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 0;
y_correct = 1;
assert(abs(your_fcn_name(x)-y_correct)<0.01)
|
2 | Pass |
x = pi/2;
y_correct = 0;
assert(abs(your_fcn_name(x)-y_correct)<0.01)
|
3 | Pass |
x = pi;
y_correct = -1;
assert(abs(your_fcn_name(x)-y_correct)<0.01)
|
4 | Pass |
x = 3*pi/2;
y_correct = 0;
assert(abs(your_fcn_name(x)-y_correct)<0.01)
|
Return the largest number that is adjacent to a zero
3108 Solvers
Return a list sorted by number of occurrences
1225 Solvers
Basics: 'Find the eigenvalues of given matrix
257 Solvers
379 Solvers
44 Solvers