Number of Good Pairs

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 array of integers nums, return the number of**good pairs.
A pair (i, j) is called good if nums[i] == nums[j] and i < j.
LeetCode Problem - 1512: Link | Click Here
class Solution {
// Method to count the number of identical pairs in an array
public int numIdenticalPairs(int[] nums) {
// Variable to store the count of identical pairs
int count = 0;
// Nested loop to compare each pair of elements in the array
for (int i=0; i<nums.length; i++){
for (int j=i+1; j<nums.length; j++){
// Check if the elements at positions i and j are identical and i is less than j
if ((nums[i]==nums[j]) && (i<j)){
// Increment the count if a pair is found
count++;
}
}
}
// Return the final count of identical pairs
return count;
}
}




