Nieuws

Add to Array-Form of Integer Easy The array-form of an integer num is an array representing its digits in left to right order. For example, for num = 1321, the array form is [1,3,2,1].
# For a non-negative integer X, the array-form of X is an array of its digits # in left to right order. For example, if X = 1231, then the array form is ...