2109. Adding Spaces to a String - 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

You are given a string s and an array of integers spaces. The array spaces contains indices (in strictly increasing order) where you need to insert a single space into s. In other words, for each index in spaces, you should insert a space character before the character at that index in the original string.

Return the modified string after all the spaces have been inserted.

Example 1

  • Input:
    • s = "LeetcodeHelpsMeLearn"
    • spaces = [8, 13, 15]
  • Explanation:
    • The characters at indices 8, 13, and 15 in the original string are where spaces must be inserted.
    • After inserting spaces:
      • Before index 8: "Leetcode" becomes "Leetcode "
      • Before index 13: "Helps" becomes "Helps "
      • Before index 15: "MeLearn" becomes "Me Learn"
    • The resulting string is: "Leetcode Helps Me Learn".
  • Output: "Leetcode Helps Me Learn"

Example 2

  • Input:
    • s = "spacing"
    • spaces = [1, 3, 5]
  • Explanation:
    • Insert a space before the character at index 1, then at index 3, and then at index 5 of the original string.
    • The resulting string becomes: "s pa c ing" (visualized as characters with spaces inserted).
  • Output: "s pa c ing"

Constraints

  • 1 ≤ s.length ≤ 10⁵
  • 1 ≤ spaces.length ≤ s.length
  • 0 ≤ spaces[i] < s.length
  • All values in spaces are unique and given in increasing order.

Hints

  1. Two-Pointer Technique:

    • Use one pointer to iterate over the string s and another pointer to track the current index in the spaces array.
    • As you build the resulting string, whenever the current index in s matches the next index in spaces, insert a space and move to the next index in spaces.
  2. String Building:

    • Since repeatedly concatenating strings is inefficient, consider building the result using a list (in Python) or a StringBuilder (in Java) and then converting it to a string.
  3. Edge Cases:

    • Make sure to process the entire string even if you run out of indices in spaces.

Approach 1: Two-Pointer Iteration

Explanation

  1. Initialization:

    • Create a pointer i for iterating over the string s.
    • Create a pointer j for the spaces array.
    • Use a list (or similar structure) to accumulate characters and spaces.
  2. Iterate Over the String:

    • For each character at index i in s, check if i is equal to the current index in spaces (i.e. spaces[j]).
    • If it is, append a space to your result and move the spaces pointer (j++).
    • Append the current character to your result.
    • Continue this until you have processed all characters in s.
  3. Finalize the Result:

    • Join the accumulated characters into the final string and return it.

This approach processes the string in a single pass, yielding a time complexity of O(n) where n is the length of the string.

Code Solutions

Python Code

Python3
Python3

. . . .

Java Code

Java
Java

. . . .

Complexity Analysis

  • Time Complexity:
    The solution makes a single pass through the string s (O(n)) and at most one pass through the spaces array (O(m)), resulting in an overall complexity of O(n + m). Given that m ≤ n, it simplifies to O(n).

  • Space Complexity:
    We use a list (or StringBuilder) to accumulate characters. In the worst case, the extra space is O(n + m), which is also O(n) since m ≤ n.

Step-by-Step Walkthrough

Consider s = "LeetcodeHelpsMeLearn" and spaces = [8, 13, 15]:

  1. Initialization:

    • result = []
    • j = 0
    • Process characters from index i = 0 to i = len(s) - 1.
  2. Iteration:

    • For i = 0 to 7, no space insertion since none of these indices match spaces[0] (which is 8).
      → Append characters "L", "e", "e", "t", "c", "o", "d", "e".
    • At i = 8, it matches spaces[0] (8), so append a space, then the character at index 8.
    • Continue similarly for i = 13 and i = 15, where spaces are inserted.
  3. Finalization:

    • The list result accumulates: "Leetcode" + " " + "Helps" + " " + "Me" + " " + "Learn".
    • Join the list into a single string and return it.

Common Pitfalls

  • Off-by-One Errors:
    Ensure that the space is inserted before the character at the given index. The indices in spaces refer to positions in the original string without considering any previously inserted spaces.

  • Inefficient String Concatenation:
    Directly concatenating strings in a loop can be inefficient in some languages. Using a list (Python) or StringBuilder (Java) is recommended.

  • Boundary Conditions:
    Be careful to handle cases when spaces is empty or when the last character in s is at an index not specified by spaces.

  • Direct Simulation:
    You could simulate insertion by slicing the string at each index given in spaces and then joining the parts with spaces. However, this method may involve extra string copying and is less efficient.

  • Related Problems:

    • String Manipulation: Problems where you modify a string based on given indices.
    • Insert Operations: Problems involving inserting characters into strings or arrays efficiently.
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
Identifying trade-offs between latency and throughput in designs
What are C++ identifiers?
1011. Capacity To Ship Packages Within D Days - Detailed Explanation
Learn to solve Leetcode 1011. Capacity To Ship Packages Within D Days with multiple approaches.
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.
;