Contains Duplicate

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.
Given an integer array nums, return true if any value appears at least twice in the array, and return false if every element is distinct.
LeetCode Problem: Link | Click Here
class Solution {
public boolean containsDuplicate(int[] nums) {
// Initialize a variable to store the result
boolean result = false;
// Sort the array of numbers
Arrays.sort(nums);
// Iterate through the sorted array
for (int i = 0; i < nums.length - 1; i++) {
// Check if the current number is equal to the next number
if (nums[i] == nums[i + 1]) {
result = true; // If duplicate found, set result to true
return result; // Return true as soon as a duplicate is found
}
}
// If no duplicates found, return the initial value of result (false)
return result;
}
}




