Posts by Wickrin • 13 points
1 post
-
1
votes1
answer90
viewsQ: Invert string containing numbers
Using this code as a test, whose goal is to invert a string containing numbers. Input: 0123456789 Output: [57, 56, 55, 54, 53, 52, 51, 50, 49, 48] unlike [9, 8, 7, 6, 5, 4, 3, 2, 1, 0]. public class…