Two Sum - Unique Pairs Leetcode | Find unique pairs in the array their sum is equal to target.

Опубликовано: 11 Июль 2026
на канале: CodingWithKaushik
209
4

Given an int array nums and an int target, find how many unique pairs in the array such that their sum is equal to target. Return the number of pairs.

Example 1:

Input: nums = [1, 1, 2, 45, 46, 46], target = 47
Output: 2
Explanation:
1 + 46 = 47
2 + 45 = 47
Example 2:

Input: nums = [1, 1], target = 2
Output: 1
Explanation:
1 + 1 = 2