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]
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers686
Suggested Problems
-
First non-zero element in each column
942 Solvers
-
Rotate input square matrix 90 degrees CCW without rot90
683 Solvers
-
887 Solvers
-
Replace multiples of 5 with NaN
468 Solvers
-
Create an n-by-n null matrix and fill with ones certain positions
718 Solvers
More from this Author23
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Anyone has suggestions on a clean way of doing this?