Elements of Programming Interviews

Adnan Aziz, Tsung-Hsien Lee, Amit Prakash

Elements of Programming Interviews

Adnan Aziz is a Research Scientist at Facebook. Previously, he was a professor at the Department of Electrical and Computer Engineering at The University of Texas at Austin, where he conducted research and taught classes in applied algorithms. He received his Ph.D. from The University of California at Berkeley; his undergraduate degree is from Indian Institutes of Technology Kanpur. He has worked at Google, Qualcomm, IBM, and several software startups. When not designing algorithms, he plays with his children, Laila, Imran, and Omar.

Tsung-Hsien Lee is a Senior Software Engineer at Uber. Previously, he worked as a Software Engineer at Google and as Software Engineer Intern at Facebook. He received both his M.S. and undergraduate degrees from National Tsing Hua University. He has a passion for designing and implementing algorithms. He likes to apply algorithms to every aspect of his life. He takes special pride in helping to organize Google Code Jam 2014 and 2015.

Amit Prakash is a co-founder and CTO of ThoughtSpot, a Silicon Valley startup. Previously, he was a Member of the Technical Staff at Google, where he worked primarily on machine learning problems that arise in the context of online advertising. Before that he worked at Microsoft in the web search team. He received his Ph.D. from The University of Texas at Austin; his undergraduate degree is from Indian Institutes of Technology Kanpur. When he is not improving business intelligence, he indulges in his passion for puzzles, movies, travel, and adventures with Nidhi and Aanya.

LeetCode Problems

Elements of Programming Interviews

Help us improve! If you notice any incorrectly assigned exercises or if you know of any that are currently unassigned, please report it or submit a pull request on GitHub.

NumberQuestionLeetcode NumberLeetcode TitleSimilar QuestionsDifficultyVideo
Primitive Types
4.1Computing the parity of a word-
-
-N/AN/A
4.2Swap bits-
-
-N/AN/A
4.3Reverse Bits190Reverse Bits-Easy
4.4Find a closest integer with the same weight-
-
-N/AN/A
4.5Compute XxY without arithmetical operators-
-
-N/AN/A
4.6Compute x/y-
-
-N/AN/A
4.7Compute x^y50Pow(x, n)-Medium
4.8Reverse digits-
-
-N/AN/A
4.9Check if a decimal integer is a palindrome9Palindrome Number-Easy
4.1Generate uniform random numbers-
-
470 N/AN/A
4.11Rectangle intersection-
-
836 N/AN/A
Arrays
5.1The Dutch national flag problem75Sort Colors-Medium
5.2Increment an arbitrary-precision integer66Plus One-Easy
5.3Multiply two arbitrary-precision integers-
-
-N/AN/A
5.4Advancing through an array55Jump Game-Medium
5.5Delete duplicates from a sorted array26Remove Duplicates from Sorted Array-Easy
5.6Buy and sell a stock once121Best Time to Buy and Sell Stock-Easy
5.7Buy and sell a stock twice123Best Time to Buy and Sell Stock III-Hard
5.8Computing an altemation280Wiggle Sort-Medium
5.9Enumerate all primes to n-
-
204 N/AN/A
5.1Permute the elements of an array-
-
-N/AN/A
5.11Compute the next permutation31Next Permutation-Medium
5.12Sample offline data-
-
-N/AN/A
5.13Sample online data-
-
-N/AN/A
5.14Compute a random permutation384Shuffle an Array-MediumN/A
5.15Compute a random subset-
-
-N/AN/A
5.16Generate nonuniform random numbers-
-
-N/AN/A
5.17he Sudoku checker problem36Valid Sudoku-Medium
5.18Compute the spiral ordering of a2D array54Spiral Matrix-Medium
5.19Rotate a 2D array48Rotate Image-Medium
5.2Compute rows in Pascal's Triangle118Pascal's Triangle-Easy
Strings
6.1Interconvert strings and integers-
-
8 N/AN/A
6.2Base conversion-
-
-N/AN/A
6.3Compute the spreadsheet column encoding171Excel Sheet Column Number-EasyN/A
6.4Replace and remove-
-
-N/AN/A
6.5Test palindromicity125Valid Palindrome-Easy
6.6Reverse all the words in a sentence186Reverse Words in a String II-MediumN/A
6.7Compute all mnemonics for a phone number17Letter Combinations of a Phone Number-Medium
6.8The look-and-say problem38Count and Say-MediumN/A
6.9Convert from Roman to decimal13Roman to Integer-Easy
6.1Compute all valid IP addresses93Restore IP Addresses-Medium
6.11Write a string sinusoidallY-
-
-N/AN/A
6.12Implement run-length encoding443String Compression-MediumN/A
6.13Find the first occurrence of a substring28Implement strStr()-Easy
Linked Lists
7.1Merge Two Sorted Lists21Merge Two Sorted Lists-Easy
7.2Reverse a single sublist206Reverse Linked List-Easy
7.3Test for cyclicity142Linked List Cycle II-MediumN/A
7.4Test for overlapping lists-lists are cycle-free160Intersection of Two Linked Lists-Easy
7.5Test for overlapping lists-lists may have cycles-
-
-N/AN/A
7.6Delete a node from a singly linked lis237Delete Node in a Linked List-MediumN/A
7.7Remove the kth last element from a list19Remove Nth Node from End of List-Medium
7.8Remove duplicates from a sorted lis83Remove Duplicates from Sorted List-Easy
7.9Implement cyclic right shift for singly linked lists61Rotate List-Medium
7.1Implement even-odd merge-
-
328 N/AN/A
7.11Test whether a singly linked list is palindromic234Palindrome Linked List-Easy
7.12Implement list pivoting86Partition List-Medium
7.13Add list-based integers2Add Two Numbers-Medium
Stacks and Queues
8.1Implement a stack with max API-
-
155 , N/AN/AN/A
8.2Evaluate RPN expressions150Evaluate Reverse Polish Notation-Medium
8.3Test a string over '{,},(,),[,]' for well-formedness20Valid Parenthesis-Easy
8.4Normalize pathnames71Simplify Path-Medium
8.5Compute buildings with a sunset view-
-
-N/AN/A
8.6Compute binary tree nodes in order of increasing depth102Binary Tree Level Order Traversal-Medium
8.7Implement a circular queue622Design Circular Queue-Medium
8.8Implement a queue using stacks232Implement Queue using Stacks-Easy
8.9Implement a queue with max API-
-
-N/AN/A
Binary Trees
9.1Test if a binary tree is height-balanced110Balanced Binary Tree-Easy
9.2Test if a binary tree is symmetric101Symmetric Tree-Easy
9.3Compute the lowest common ancestor in a binary tree236Lowest Common Ancestor of a Binary Tree-Medium
9.4Compute the LCA when nodes have parent pointers-
-
-N/AN/A
9.5Sum the root-to-leaf paths in a binary tree129Sum Root to Leaf Numbers-Medium
9.6Find a root to leaf path with specified sum112Path Sum-Easy
9.7Implement an inorder traversal without recursion-
-
94 N/AN/A
9.8Implement a preorder traversal without recursion-
-
144 N/AN/A
9.9Compute the kth node in an inorder traversal-
-
-N/AN/A
9.1Compute the successor-
-
-N/AN/A
9.11Implement an inorder traversal with O(1) space94Binary Tree Inorder Traversal-Easy
9.12Reconstruct a binary tree from traversal data105Construct Binary Tree from Preorder and Inorder Traversal-Medium
9.13Reconstruct a binary tree from a preorder traversal with markers1028Recover a Tree From Preorder Traversal-HardN/A
9.14Form a linked list from the leaves of a binary tree-
-
-N/AN/A
9.15Compute the exterior of a binary tree545Boundary of Binary Tree-MediumN/A
9.16Compute the right sibling tree-
-
-N/AN/A
Heaps
10.1Merge sorted files-
-
-N/AN/A
10.2Sort an increasing-decreasing array-
-
-N/AN/A
10.3Sort an almost-sorted array-
-
-N/AN/A
10.4Compute the k closest stars973K Closest Points to Origin-Medium
10.5Compute the median of online data295Find Median from Data Stream-Hard
10.6Compute the k largest elements in a max-heap-
-
-N/AN/A
Searching
11.1Search a sorted array for first occurrence of k-
-
-N/AN/A
11.2Search a sorted array for entry equal to its index-
-
-N/AN/A
11.3Search a cyclically sorted array33Search in Rotated Sorted Array-Medium
11.4Compute the integer square root69Sqrt(x)-Easy
11.5Compute the real square root-
-
-N/AN/A
11.6Search in a 2D sorted affay240Search a 2D Matrix II-MediumN/A
11.7Find the min and max simultaneously-
-
-N/AN/A
11.8Find the kth largest element215Kth Largest Element in an Array-Medium
11.9Find the missing IP address-
-
-N/AN/A
11.1Find the duplicate and missing elements-
-
-N/AN/A
Hash Tables
12.1Test for palindromic permutations266Palindrome Permutation-EasyN/A
12.2Is an anonymous letter constructible?383Ransom Note-Easy
12.3Implement an ISBN cache-
-
-N/AN/A
12.4Compute the LCA, optimizing for close ancestors-
-
-N/AN/A
12.5Find the nearest repeated entries in an array-
-
-N/AN/A
12.6Find the smallest subarray covering all values-
-
76 N/AN/A
12.7Find smallest subarray sequentially covering all values-
-
727 N/AN/A
12.8Find the longest subarray with distinct entries-
-
-N/AN/A
12.9Find the length of a longest contained interval-
-
-N/AN/A
12.1Compute all string decompositions-
-
-N/AN/A
12.11Test the Collatz conjecture-
-
-N/AN/A
12.12Implement a hash function for chess-
-
-N/AN/A
Sorting
13.1Compute the intersection of two sorted arrays-
-
-N/AN/A
13.2Merge two sorted arrays88Merge Sorted Array-Easy
13.3H-Index274H-Index-Medium
13.4Remove first-name duplicates-
-
-N/AN/A
13.5Smallest nonconstructiblev alue-
-
-N/AN/A
13.6Render a calendar-
-
-N/AN/A
13.7Merging intervals56Merge Intervals-Medium
13.8Compute the union of intervals-
-
-N/AN/A
13.9Partitioning and sorting an affay with many rePeated entries-
-
-N/AN/A
13.1Team photo day-1-
-
-N/AN/A
13.11lmplement a fast sorting algorithm for lists-
-
-N/AN/A
13.12Compute a salary threshold148Sort List-Medium
Binary Search Trees
14.1Test if a binary tree satisfies the BST property98Validate Binary Search Tree-Medium
14.2Find the first key greater than a given value in a BST285Inorder Successor in BST-MediumN/A
14.3Find the k largest elements in a BST-
-
-N/AN/A
14.4Compute the LCA in a BST235Lowest Common Ancestor of a Binary Search Tree-Medium
14.5Reconstruct a BST from traversal data-
-
-N/AN/A
14.6Find the closest entries in three sorted arrays-
-
-N/AN/A
14.7Enumerate numbers of the form a + b*sqrt(2)-
-
-N/AN/A
14.8Build a minimum height BST from a sorted affay108Convert Sorted Array to Binary Search Tree-Easy
14.9Test if three BST nodes are totally ordered-
-
-N/AN/A
14.1The range lookup problem-
-
-N/AN/A
14.11Add credits-
-
-N/AN/A
Recursion
15.1The Towers of Hanoi problem-
-
-N/AN/A
15.2Generate all nonattacking placements of n-Queens51N-Queens-Hard
15.3Generate permutations46Permutations-Medium
15.4Generate the power set78Subsets-Medium
15.5Generate all subsets of size k-
-
-N/AN/A
15.6Generate strings of matched parens22Generate Parentheses-Medium
15.7Generate palindromic decompositions131Palindrome Partitioning-Medium
15.8Generate binary trees-
-
-N/AN/A
15.9Implement a Sudoku solver37Sudoku Solver-HardN/A
15.1Compute a Gray code89Gray Code-MediumN/A
Dynamic Programming
16.1Count the number of score combinations-
-
-N/AN/A
16.2Compute the Levenshtein distance72Edit Distance-Medium
16.3Count the number of ways to traverse a 2D array62Unique Paths-Medium
16.4Compute the binomial coefficients-
-
-N/AN/A
16.5Search for a sequence in a 2D array-
-
-N/AN/A
16.6The knapsack problem-
-
-N/AN/A
16.7The bedbathandbeyond.com problem140Word Break II-Hard
16.8Find the minimum weight path in a triangle120Triangle-Medium
16.9Pick up coins for maximum gain877Stone Game-Medium
16.1Count the number of moves to climb stairs70Climbing Stairs-Easy
16.11The pretty printing problem-
-
-N/AN/A
16.12Find the longest nondecreasing subsequence300Longest Increasing Subsequence-Medium
Greedy Algorithms and Invariants
17.1Compute an optimum assignment of tasks-
-
-N/AN/A
17.2Schedule to minimize waiting time-
-
-N/AN/A
17.3The interval covering problem-
-
-N/AN/A
17.4The 3-sum problem153Sum-Medium
17.5Find the majority element169Majority Element-Easy
17.6The gasup problem134Gas Station-Medium
17.7Compute the maximum water trapped by a pair of vertical lines11Container With Most Water-Medium
17.8Compute the largest rectangle under the skyline84Largest Rectangle in Histogram-Hard
Graphs
18.1Search a maze505The Maze II-MediumN/A
18.2Paint a Boolean matrix733Flood Fill-Easy
18.3Compute enclosed regions1020Number of Enclaves-Medium
18.4Deadlock detection-
-
-N/AN/A
18.5Clone a graph-
-
-N/AN/A
18.6Making wired connections-
-
-N/AN/A
18.7Transform one string to another-
-
-N/AN/A
18.8Team photo day-2-
-
-N/AN/A
Parallel Computing
19.1Implement caching for a multithreaded dictionary-
-
-N/AN/A
19.2Analyze two unsynchronized interleaved threads-
-
-N/AN/A
19.3Implement synchronization for two interleaving threads-
-
-N/AN/A
19.4Implement a thread pool-
-
-N/AN/A
19.5Deadlock-
-
-N/AN/A
19.6The readers-writers problem-
-
-N/AN/A
19.7The readers-writers problem with write preference-
-
-N/AN/A
19.8Implement a Timer class-
-
-N/AN/A
Honors Class
24.1Compute the greatest common divisor-
-
-N/AN/A
24.2Find the first missing positive entry-
-
-N/AN/A
24.3Buy and sell a stock k times-
-
-N/AN/A
24.4Compute the maximum product of all entries but one-
-
-N/AN/A
24.5Compute the longest contiguous increasing subarray-
-
-N/AN/A
24.6Rotate an array-
-
-N/AN/A
24.7Identify positions attacked by rooks-
-
-N/AN/A
24.8Justify text-
-
-N/AN/A
24.9Implement list zipping-
-
-N/AN/A
24.1Copy a postings list-
-
-N/AN/A
24.11Compute the longest substring with matching parens-
-
-N/AN/A
24.12Compute the maximum of a sliding window-
-
-N/AN/A
24.13Implement a postorder traversal without recursion-
-
-N/AN/A
24.14Compute fair bonuses-
-
-N/AN/A
24.15Search a sorted array of unknown length-
-
-N/AN/A
24.16Search in two sorted arrays-
-
-N/AN/A
24.17Find the kth largest element-large n, small k-
-
-N/AN/A
24.18Find an element that appears only once-
-
-N/AN/A
24.19Find the line through the most points-
-
-N/AN/A
24.2Convert a sorted doubly linked list into a BST-
-
-N/AN/A
24.21Convert a BST to a sorted doubly linked list-
-
-N/AN/A
24.22Merge two BSTs-
-
-N/AN/A
24.23Implement regular expression matching-
-
-N/AN/A
24.24Synthesize an expression-
-
-N/AN/A
24.25Count inversions-
-
-N/AN/A
24.26Draw the skyline-
-
-N/AN/A
24.27Measure with defective jugs-
-
-N/AN/A
24.28Compute the maximum subarray sum in a circular array-
-
-N/AN/A
24.29Determine the critical height-
-
-N/AN/A
24.3Find the maximum 2D subarray-
-
-N/AN/A
24.31Implement Huffman coding-
-
-N/AN/A
24.32Trapping water-
-
-N/AN/A
24.33The heavy hitter problem-
-
-N/AN/A
24.34Find the longest subarray whose sum <= k-
-
-N/AN/A
24.35Road network-
-
-N/AN/A
24.36Test if arbitrage is possible-
-
-N/AN/A
All solution videos are from the respective channels of NeetCode, NeetCode.io, Tech Dose, and Greg Hogg. Visit their channels for further explanations and tips for various interviews.