FPEvalDataset/LeetCodeProblem
0304
1{2 "id": 3399,3 "name": "find_the_integer_added_to_array_ii",4 "difficulty": "Medium",5 "link": "https://leetcode.com/problems/find-the-integer-added-to-array-ii/",6 "date": "2024-04-21 00:00:00",7 "task_description": "You are given two integer arrays `nums1` and `nums2`. From `nums1` two elements have been removed, and all other elements have been increased (or decreased in the case of negative) by an integer, represented by the variable `x`. As a result, `nums1` becomes **equal** to `nums2`. Two arrays are considered **equal** when they contain the same integers with the same frequencies. Return the **minimum** possible integer_ _`x`_ _that achieves this equivalence. **Example 1:** **Input:** nums1 = [4,20,16,12,8], nums2 = [14,18,10] **Output:** -2 **Explanation:** After removing elements at indices `[0,4]` and adding -2, `nums1` becomes `[18,14,10]`. **Example 2:** **Input:** nums1 = [3,5,5,3], nums2 = [7,7] **Output:** 2 **Explanation:** After removing elements at indices `[0,3]` and adding 2, `nums1` becomes `[7,7]`. **Constraints:** `3 <= nums1.length <= 200` `nums2.length == nums1.length - 2` `0 <= nums1[i], nums2[i] <= 1000` The test cases are generated in a way that there is an integer `x` such that `nums1` can become equal to `nums2` by removing two elements and adding `x` to each element of `nums1`.",8 "public_test_cases": [9 {10 "label": "Example 1",11 "input": "nums1 = [4,20,16,12,8], nums2 = [14,18,10]",12 "output": "-2 "13 },14 {15 "label": "Example 2",16 "input": "nums1 = [3,5,5,3], nums2 = [7,7]",17 "output": "2 "18 }19 ],20 "private_test_cases": [],21 "haskell_template": "minimumAddedInteger :: [Int] -> [Int] -> Int\nminimumAddedInteger nums1 nums2 ",22 "ocaml_template": "let minimumAddedInteger (nums1: int list) (nums2: int list) : int = ",23 "scala_template": "def minimumAddedInteger(nums1: List[Int],nums2: List[Int]): Int = { \n \n}",24 "java_template": "class Solution {\n public int minimumAddedInteger(int[] nums1, int[] nums2) {\n \n }\n}",25 "python_template": "class Solution(object):\n def minimumAddedInteger(self, nums1, nums2):\n \"\"\"\n :type nums1: List[int]\n :type nums2: List[int]\n :rtype: int\n \"\"\"\n "26}