
Given a set of distinct positive integers nums , return the largest subset answer such that every pair (answer[i], answer[j]) of elements in this subset satisfies:
answer[i] % answer[j] == 0 , or
answer[j] % answer[i] == 0
If there are multiple solutions, return any of them.
1 <= nums.length <= 10001 <= nums[i] <= 2 * 10 ^9All the integers in nums are unique .