Technical Question: Given two unsorted lists of positive integer numbers, find the largest difference between the two. The number in list1 must be smaller than list2. Example: {1, 3, 8, 7, 4} {0, 2, 6, 5, 10} Largest difference is between 1 and 10.
Sigiloso
x = min(list1) y = max(list2) if x < y: return (y - x) return None or error