This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
function y = nearZero(x)
x=[-inf,x,-inf];
zeroindex=find(~x);
zeroindexl=zeroindex-1;
zeroindexr=zeroindex+1;
y=max([x(zeroindexl),x(zeroindexr)])
end
Very interesting problem
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = [1, 5, 3, 0, 2, 7, 0, 8, 9, 1 0];
b = 8;
assert(isequal(nearZero(a),b))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In nearZero (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
a = [5 4 -1 0 -2 0 -5 8];
b = -1;
assert(isequal(nearZero(a),b));
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In nearZero (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
a = [0 3 1 0 2 9];
b = 3;
assert(isequal(nearZero(a),b));
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In nearZero (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
4 | Pass |
a = [1 0 2 0 3];
b = 3;
assert(isequal(nearZero(a),b));
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In nearZero (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
5 | Pass |
a = [0 -1];
b = -1;
assert(isequal(nearZero(a),b));
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In nearZero (line 2)
In ScoringEngineTestPoint5 (line 3)
In solutionTest (line 11)]
|
6 | Pass |
a = [0 -12 0 -7 0];
b = -7;
assert(isequal(nearZero(a),b));
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In nearZero (line 2)
In ScoringEngineTestPoint6 (line 3)
In solutionTest (line 13)]
|
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!