Replace all elements in a vector which are equal to or smaller than zero with 0.1.
Example:
A = [1 2 3 -1 0 2 -3 -80];
Answer:
B = [1 2 3 0.1 0.1 2 0.1 0.1];
Please add more tests, because it is easy to cheat :)
ambiguous about what happens to numbers between [0,0.1] : ill-defined problem or poor-testsuite
kinda easy
The solution passes all tests but it is not correct.
??? What is this man???
Really???
He probably noticed that you had already set x to the correct answer in your test suite. All he (or anybody else) has to do is pass it back to you. Try removing the FOR loop from your test (and add some more tests while you're in there!).
8419 Solvers
Find the largest value in the 3D matrix
899 Solvers
Cell Counting: How Many Draws?
255 Solvers
Determine the number of odd integers in a vector
323 Solvers
Create a two dimensional zero matrix
275 Solvers