Take as input an array of digits (e.g. x = [1 2 3]) and output an array of digits that is that number "incremented" properly, (in this case, y = [1 2 4]).
Examples of proper input/output:
x = [1 9 1 9] ----> y = [1 9 2 0]
and
x = [9 9 9] ----> y = [1 0 0 0]
Anyone has suggestions on a clean way of doing this?
Determine the number of odd integers in a vector
320 Solvers
179 Solvers
263 Solvers
402 Solvers
301 Solvers