Day 30 of LeetCode Challenge
Problem 1: Finding Pairs with a Certain Sum
Link to the problem: https://leetcode.com/problems/finding-pairs-with-a-certain-sum/
class FindSumPairs {
int[] n1, n2;
Map<Integer, Integer> map = new HashMap<>();
public FindSumPairs(int[] ...
tusharpant.hashnode.dev3 min read