
Given two sorted 0-indexed integer arrays nums1 and nums2 as well as an integer k , return the k ^th ( 1-based ) smallest product of nums1[i] * nums2[j] where 0 <= i < nums1.length and 0 <= j < nums2.length .
1 <= nums1.length, nums2.length <= 5 * 10 ^4-10 ^5 <= nums1[i], nums2[j] <= 10 ^51 <= k <= nums1.length * nums2.lengthnums1 and nums2 are sorted.