Class Solution
-
- All Implemented Interfaces:
public final class Solution3131 - Find the Integer Added to Array I\.
Easy
You are given two arrays of equal length,
nums1andnums2.Each element in
nums1has been increased (or decreased in the case of negative) by an integer, represented by the variablex.As a result,
nums1becomes equal tonums2. Two arrays are considered equal when they contain the same integers with the same frequencies.Return the integer
x.Example 1:
Input: nums1 = 2,6,4, nums2 = 9,7,5
Output: 3
Explanation:
The integer added to each element of
nums1is 3.Example 2:
Input: nums1 = 10, nums2 = 5
Output: \-5
Explanation:
The integer added to each element of
nums1is -5.Example 3:
Input: nums1 = 1,1,1,1, nums2 = 1,1,1,1
Output: 0
Explanation:
The integer added to each element of
nums1is 0.Constraints:
1 <= nums1.length == nums2.length <= 1000 <= nums1[i], nums2[i] <= 1000The test cases are generated in a way that there is an integer
xsuch thatnums1can become equal tonums2by addingxto each element ofnums1.
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
Modifier and Type Method Description final IntegeraddedInteger(IntArray nums1, IntArray nums2)-
-
Method Detail
-
addedInteger
final Integer addedInteger(IntArray nums1, IntArray nums2)
-
-
-
-