Your question is Common Numbers Between Lists. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Gemini QA tooling compares value lists from two test surfaces, such as Gemini app results and Gemini API results. Given two integer lists, return the distinct values present in both lists, ordered by their first appearance in the first list.
Implement common_numbers(nums1, nums2).
nums1 and nums2, two lists of integers.nums1.def common_numbers(nums1, nums2):