Problem Description
Given two arrays of unique digits nums1
and nums2
, return the smallest number that contains at least one digit from each array.
Key Insights
- The smallest number can be formed by combining digits from both arrays.
- If there is a common digit between the two arrays, that digit is the smallest possible number.
- If there are no common digits, the smallest number can be created by combining the smallest digits from each array.
Space and Time Complexity
Time Complexity: O(n + m), where n is the length of nums1
and m is the length of nums2
.
Space Complexity: O(1), as we only use a few variables to keep track of the smallest digits.
Solution
To solve the problem, we can utilize the following approach:
- Identify if there are any common digits between
nums1
andnums2
. - If a common digit exists, it is the smallest possible number we can return.
- If no common digits exist, find the smallest digit from each array and form the smallest possible two-digit number by combining them in ascending order.
We can use a set to efficiently check for common digits and simple comparisons to find the smallest digits.