1. Two Sum - Detailed Explanation

Free Coding Questions Catalog
Boost your coding skills with our essential coding questions catalog. Take a step towards a better tech career now!

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

  1. Example 1:

    • Input: nums = [2, 7, 11, 15], target = 9
    • Output: [0, 1]
    • Explanation:
      The sum of nums[0] and nums[1] is 2 + 7 = 9.
  2. Example 2:

    • Input: nums = [3, 2, 4], target = 6
    • Output: [1, 2]
    • Explanation:
      The sum of nums[1] and nums[2] is 2 + 4 = 6.
  3. Example 3:

    • Input: nums = [3, 3], target = 6
    • Output: [0, 1]
    • Explanation:
      The sum of nums[0] and nums[1] is 3 + 3 = 6. Below is the constraints section in a properly formatted Markdown snippet using LaTeX for the mathematical expressions:

Constraints:

\(2 \leq \text{nums.length} \leq 10^4\)
\(-10^9 \leq \text{nums}[i] \leq 10^9\)
\(-10^9 \leq \text{target} \leq 10^9\)

Exactly one solution exists.

Hints Before the Full Solution

  1. 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.

  2. 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

Python3
Python3

. . . .

Java Code

Java
Java

. . . .

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

  1. Initial Setup:

    • Create an empty hash table called seen.
  2. Iteration through the Array:

    • For each element num at index i:
      • 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 index i.
        • No: Add num and its index i to seen.
  3. Example Visual:
    For nums = [2, 7, 11, 15] and target = 9:

    • Iteration 1:

      • i = 0, num = 2
      • Complement = 9 - 2 = 7
      • seen is empty, so add 2:0 to seen.
      • 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.

  • 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.
  • 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.
TAGS
LeetCode
CONTRIBUTOR
Design Gurus Team
-

GET YOUR FREE

Coding Questions Catalog

Design Gurus Newsletter - Latest from our Blog
Boost your coding skills with our essential coding questions catalog.
Take a step towards a better tech career now!
Explore Answers
Is Snowflake SQL or NoSQL?
What are the 3 phases of system design?
How to understand computational complexity for interviews?
Related Courses
Image
Grokking the Coding Interview: Patterns for Coding Questions
Grokking the Coding Interview Patterns in Java, Python, JS, C++, C#, and Go. The most comprehensive course with 476 Lessons.
Image
Grokking Modern AI Fundamentals
Master the fundamentals of AI today to lead the tech revolution of tomorrow.
Image
Grokking Data Structures & Algorithms for Coding Interviews
Unlock Coding Interview Success: Dive Deep into Data Structures and Algorithms.
Image
One-Stop Portal For Tech Interviews.
Copyright © 2025 Design Gurus, LLC. All rights reserved.
;