For a vector x and number n, the goal is to find every element of x inferior to n and replace it by n.
Example
x= [ 1 2 3 4 5 1 2 4 6]
n=3
y_correct= [ 3 3 3 4 5 3 3 4 6]
Thanks for adding the third test case. It is very interesting (still working on passing)
3655 Solvers
282 Solvers
middleAsColumn: Return all but first and last element as a column vector
317 Solvers
Element by element multiplication of two vectors
202 Solvers
89 Solvers