Find the Integer Added to Array I

As a Systems Engineer at Tata Consultancy Services, I deliver exceptional software products for mobile and web platforms, using agile methodologies and robust quality maintenance. I am experienced in performance testing, automation testing, API testing, and manual testing, with various tools and technologies such as Jmeter, Azure LoadTest, Selenium, Java, OOPS, Maven, TestNG, and Postman.
I have successfully developed and executed detailed test plans, test cases, and scripts for Android and web applications, ensuring high-quality standards and user satisfaction. I have also demonstrated my proficiency in manual REST API testing with Postman, as well as in end-to-end performance and automation testing using Jmeter and selenium with Java, TestNG and Maven. Additionally, I have utilized Azure DevOps for bug tracking and issue management.
You are given two arrays of equal length, nums1 and nums2.
Each element in nums1 has 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 integer x.
LeetCode Problem - 3131
import java.util.Arrays;
class Solution {
// Method to find the difference between the smallest element of nums2 and nums1
public int addedInteger(int[] nums1, int[] nums2) {
// Sorting both arrays
Arrays.sort(nums1);
Arrays.sort(nums2);
// Finding the difference between the smallest elements of nums2 and nums1
int diffChecker = nums2[0] - nums1[0];
// Returning the difference
return diffChecker;
}
}




