Given two sorted arrays nums1 and nums2, return an array that contains the set difference of these two arrays. The elements in the set difference must be in ascending order.
The set difference of two arrays is an array where all values are distinct and are present in either the first array or the second array, but not in both.