I am currently having an issue regarding combining a integer array into an integer.
I looked into a couple of other ways to do them at Way to combine integer array to a single integer variable?, but I still do not understand why I am running into errors.
My goal is to turn:
[6, 2, 3, 3, 8, 7, 7, 7, 0, 1, 6]
into
62338777016
It currently works when given smaller integer arrays such as:
[1, 3, 4, 4]
-> 1344
It starts breaking down once the number of elements reaches 10. Does anybody have a possible solution?