Given two arrays of length m and n with digits 0-9 representing twonumbers. Create the maximum number of length k <= m + n from digits ofthe two. The relative order of the digits from the same array must bepreserved. Return an array of the k digits. You should try to optimizeyour time and spac...