Write two functions:
to_array(), which converts a number to an array of its digits.to_number(), which converts an array of digits back to its number.to_array(235) ➞ [2, 3, 5]
to_array(0) ➞ [0]
to_number([2, 3, 5]) ➞ 235
to_number([0]) ➞ 0All test cases will be weakly positive numbers: >= 0