Most common SpaceX coding Interview questions

Arrays

Sum of two values

Problem Statement

Given an array of integers and a value, determine if there are any two integers in the array whose sum is equal to the given value.

Move zeros to the left

Problem Statement

Move all zeros to the left of an array while maintaining its order.

Linked Lists

Delete node with given key

Problem Statement

You are given the head of a linked list and a key. You have to delete the node that contains this given key.

Copy linked list with arbitrary pointer

Problem Statement

You are given a linked list where the node has two pointers. The first is the regular ‘next’ pointer. The second pointer is called ‘arbitrary_pointer’ and it can point to any node in the linked list.

Your job is to write code to make a deep copy of the given linked list. Here, deep copy means that any operations on the original list (inserting, modifying and removing) should not affect the copied list.

Trees

Mirror binary trees

Problem Statement

Given the root node of a binary tree, swap the 'left' and 'right' children for each node.

Check if two binary trees are identical

Problem Statement

Given the roots of two binary trees, determine if these trees are identical or not.

Strings

String segmentation

Problem Statement

Given a dictionary of words and an input string tell whether the input string can be completely segmented into dictionary words.

Find all palindrome substrings

Problem Statement

Given a string find all non-single letter substrings that are palindromes.

Dynamic Programming

Largest sum subarray

Problem Statement

Given an array, find the contiguous subarray with the largest sum.

Math and Stats

Determine if the number is valid

Problem Statement

Given an input string, determine if it makes a valid number or not. For simplicity, assume that white spaces are not present in the input.

Backtracking

Print balanced brace combinations

Problem Statement

Print all braces combinations for a given value 'N' so that they are balanced.

Graphs

Minimum spanning tree

Problem Statement

Find the minimum spanning tree of a connected, undirected graph with weighted edges.

Design

Implement a LRU cache

Problem Statement

Least Recently Used (LRU) is a common caching strategy. It defines the policy to evict elements from the cache to make room for new elements when the cache is full, meaning it discards the least recently used items first.

Sorting and Searching

Find the high and low index

Problem Statement

Given a sorted array of integers, return the low and high index of the given key. Return -1 if not found. The array length can be in the millions with many duplicates.

Merge overlapping intervals

Problem Statement

You are given an array (list) of interval pairs as input where each interval has a start and end timestamp. The input array is sorted by starting timestamps. You are required to merge overlapping intervals and return output array (list).