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)
Back to basics 6 - Column Vector
809 Solvers
469 Solvers
223 Solvers
Find the position of first minimum value in an integer array with numbers
96 Solvers
206 Solvers