1. Two Sum - Detailed Explanation
Problem Statement
Given an array of integers nums
and an integer target
, return the indices of the two numbers such that they add up to the target.
You may assume that each input would have exactly one solution, and you may not use the same element twice. The answer can be returned in any order.
Example Inputs & Outputs
-
Example 1:
- Input:
nums = [2, 7, 11, 15]
,target = 9
- Output:
[0, 1]
- Explanation:
The sum ofnums[0]
andnums[1]
is2 + 7 = 9
.
- Input:
-
Example 2:
- Input:
nums = [3, 2, 4]
,target = 6
- Output:
[1, 2]
- Explanation:
The sum ofnums[1]
andnums[2]
is2 + 4 = 6
.
- Input:
-
Example 3:
- Input:
nums = [3, 3]
,target = 6
- Output:
[0, 1]
- Explanation:
The sum ofnums[0]
andnums[1]
is3 + 3 = 6
. Below is the constraints section in a properly formatted Markdown snippet using LaTeX for the mathematical expressions:
- Input:
Constraints:
Exactly one solution exists.
Hints Before the Full Solution
-
Hint 1:
Consider the brute-force approach first—try every pair of numbers to see if they add up to the target. This solution is simple but not efficient. -
Hint 2:
To improve efficiency, think about using a hash table (or dictionary) to store the numbers you’ve seen so far. As you iterate through the list, calculate the complement ( \text{complement} = \text{target} - \text{num} ) and check if it exists in the hash table.
Approaches to Solve the Problem
1. Brute Force Approach
Idea:
- Use two nested loops to check every possible pair of numbers.
- If the sum of any two numbers equals the target, return their indices.
Pseudo-code:
def twoSum(nums, target): for i in range(len(nums)): for j in range(i + 1, len(nums)): if nums[i] + nums[j] == target: return [i, j]
Drawback:
- Time Complexity: (O(n^2)). This approach is inefficient for large input arrays.
2. Optimal Approach Using a Hash Table
Idea:
-
Iterate through the array once.
-
For each element, compute its complement:
\text{complement} = \text{target} - \text{num} -
Check if the complement is already in the hash table:
- If yes, return the indices.
- If no, store the current number and its index in the hash table.
Pseudo-code:
def twoSum(nums, target): seen = {} for i, num in enumerate(nums): complement = target - num if complement in seen: return [seen[complement], i] seen[num] = i
Advantages:
- Time Complexity: (O(n)) on average.
- Space Complexity: (O(n)) due to the extra hash table.
Code Implementation
Python Code
Java Code
Complexity Analysis
-
Brute Force Approach:
- Time Complexity: (O(n^2))
- Space Complexity: (O(1))
-
Optimal Approach (Hash Table):
- Time Complexity: (O(n)) on average
- Space Complexity: (O(n))
Step-by-Step Walkthrough & Visual Explanation
-
Initial Setup:
- Create an empty hash table called
seen
.
- Create an empty hash table called
-
Iteration through the Array:
- For each element
num
at indexi
:-
Compute the complement:
\text{complement} = \text{target} - \text{num} -
Check: Is the complement already in
seen
?- Yes: Return the index of the complement from
seen
and the current indexi
. - No: Add
num
and its indexi
toseen
.
- Yes: Return the index of the complement from
-
- For each element
-
Example Visual:
Fornums = [2, 7, 11, 15]
andtarget = 9
:-
Iteration 1:
i = 0
,num = 2
- Complement =
9 - 2 = 7
seen
is empty, so add2:0
toseen
.seen = {2: 0}
-
Iteration 2:
i = 1
,num = 7
- Complement =
9 - 7 = 2
- Check
seen
: 2 exists with index 0. - Return
[0, 1]
.
-
Common Mistakes & Edge Cases
-
Using the Same Element Twice:
Ensure that you do not use the same element for both parts of the pair. -
Not Handling Negative Numbers:
The problem may include negative numbers. Make sure the complement calculation works correctly. -
Assuming Multiple Solutions:
The problem guarantees exactly one solution. Do not add extra logic to handle multiple valid answers. -
Edge Case: Minimum Input Size:
When the array has only two elements, the solution should directly return their indices.
Alternative Variations and Related Problems
-
Variations of the Two Sum Problem:
- Two Sum II – Input Array Is Sorted:
Use a two-pointer approach due to the sorted order. - Two Sum IV – Input is a BST:
Modify the approach to work on a binary search tree.
- Two Sum II – Input Array Is Sorted:
-
Related Problems for Further Practice:
- 3Sum: Find triplets that add up to zero.
- 4Sum: Find quadruplets that add up to a target value.
- Subarray Sum Equals K: Find the number of subarrays that sum to a target.
- Closest Number Problems: Variations where you find numbers that are closest to a target sum.
GET YOUR FREE
Coding Questions Catalog
