<p>Given two <strong>0-indexed</strong> integer arrays <code>nums1</code> and <code>nums2</code>, return <em>a list</em><code>answer</code><em>of size</em><code>2</code><em>where:</em></p>
<ul>
<li><code>answer[0]</code><em>is a list of all <strong>distinct</strong> integers in</em><code>nums1</code><em>which are <strong>not</strong> present in</em><code>nums2</code><em>.</em></li>
<li><code>answer[1]</code><em>is a list of all <strong>distinct</strong> integers in</em><code>nums2</code><em>which are <strong>not</strong> present in</em><code>nums1</code>.</li>
</ul>
<p><strong>Note</strong> that the integers in the lists may be returned in <strong>any</strong> order.</p>
</strong>For nums1, nums1[1] = 2 is present at index 0 of nums2, whereas nums1[0] = 1 and nums1[2] = 3 are not present in nums2. Therefore, answer[0] = [1,3].
For nums2, nums2[0] = 2 is present at index 1 of nums1, whereas nums2[1] = 4 and nums2[2] = 6 are not present in nums2. Therefore, answer[1] = [4,6].</pre>