Cracking the Coding Interview

Gayle Laakmann McDowell

Cracking the Coding Interview

I am not a recruiter. I am a software engineer. And as such, I know what it's like to be asked to whip up brilliant algorithms on the spot and then write flawless code on a whiteboard. I've been through this as a candidate and as an interviewer.

Cracking the Coding Interview, 6th Edition is here to help you through this process, teaching you what you need to know and enabling you to perform at your very best. I've coached and interviewed hundreds of software engineers. The result is this book.

Learn how to uncover the hints and hidden details in a question, discover how to break down a problem into manageable chunks, develop techniques to unstick yourself when stuck, learn (or re-learn) core computer science concepts, and practice on 189 interview questions and solutions.

These interview questions are real; they are not pulled out of computer science textbooks. They reflect what's truly being asked at the top companies, so that you can be as prepared as possible.

LeetCode Problems

Cracking the Coding Interview

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
Arrays and Strings
1.1Is Unique-
-
217 N/AN/A
1.2Check Permutation567Permutation in String242 Medium
1.3URLify1410HTML Entity Parser-MediumN/A
1.4Palindrome Permutation266Palindrome Permutation-EasyN/A
1.5One Away161One Edit Distance72 MediumN/A
1.6String Compression443String Compression-MediumN/A
1.7Rotate Matrix48Rotate Image-Medium
1.8Zero Matrix73Set Matrix Zeroes-Medium
1.9String Rotation796Rotate String-Easy
Linked Lists
2.1Remove Dups1836Remove Duplicates from an Unsorted Linked List-MediumN/A
2.2Return Kth to Last-
-
19 N/AN/A
2.3Delete Middle Node876Middle of the Linked List237 Easy
2.4Partition86Partition List-Medium
2.5Sum Lists2Add Two Numbers445 Medium
2.6Palindrome234Palindrome Linked List-Easy
2.7Intersection160Intersection of Two Linked Lists-Easy
2.8Loop Detection142Linked List Cycle II-MediumN/A
Stacks and Queues
3.1Three In One-
-
-N/AN/A
3.2Stack Min155Min Stack-Medium
3.3Stack of Plates1172Dinner Plate Stacks-HardN/A
3.4Queue via Stacks232Implement Queue using Stacks-Easy
3.5Sort Stacks-
-
-N/AN/A
3.6Animal Shelter-
-
-N/AN/A
Trees and Graphs
4.1Route Between Nodes-
-
1971 N/AN/A
4.2Minimal Tree108Convert Sorted Array to Binary Search Tree-Easy
4.3List of Depths102Binary Tree Level Order Traversal-Medium
4.4Check Balanced110Balanced Binary Tree-Easy
4.5Validate BST98Validate Binary Search Tree-Medium
4.6Successor510Inorder Successor in BST II-MediumN/A
4.7Build Order210Course Schedule II-Medium
4.8First Common Ancestor236Lowest Common Ancestor of a Binary Tree1644 Medium
4.9BST Sequences-
-
1569 N/AN/A
4.1Check Subtree572Subtree of Another Tree-Easy
4.11Random Node-
-
-N/AN/A
4.12Paths with Sum437Path Sum III-MediumN/A
Bit Manipulation
5.1N/A-
-
-N/AN/A
5.2N/A-
-
-N/AN/A
5.3N/A-
-
-N/AN/A
5.4N/A-
-
-N/AN/A
5.5N/A-
-
-N/AN/A
5.6N/A-
-
-N/AN/A
5.7N/A-
-
-N/AN/A
5.8N/A-
-
-N/AN/A
Recursion and Dynamic Programming
8.1Triple Step1137N-th Tribonacci Number-Easy
8.2Robot in a Grid63Unique Paths II-Medium
8.3Magic Index-
-
-N/AN/A
8.4Power Set78Subsets-Medium
8.5Recursive Multiply-
-
29 N/AN/A
8.6Towers of Hanoi-
-
-N/AN/A
8.7Permutation without Dups46Permutations-Medium
8.8Permutation with Duplicates47Permutations II-Medium
8.9Parens22Generate Parentheses-Medium
8.1Paint Fill733Flood Fill-Easy
8.11Coins518Coin Change 2-Medium
8.12Eight Queens51N-Queens-Hard
8.13Stack of Boxes-
-
1691 N/AN/A
8.14Boolean Evaluation-
-
-N/AN/A
Sorting and Searching
10.1Sorted Merge88Merge Sorted Array-Easy
10.2Group Anagrams49Group Anagrams-Medium
10.3Search in Rotated Array81Search in Rotated Sorted Array II33 Medium
10.4Sorted Search702Search in a Sorted Array of Unknown Size-MediumN/A
10.5Sparse Search-
-
-N/AN/A
10.6Sort Big File-
-
-N/AN/A
10.7Missing Int-
-
268 N/AN/A
10.8Find Duplicates287Find the Duplicate Number-Medium
10.9Sorted Matrix Search240Search a 2D Matrix II-MediumN/A
10.1Rank from Stream-
-
703 N/AN/A
10.11Peaks and Valleys280Wiggle Sort-Medium
Moderate
16.1Number Swapper-
-
-N/AN/A
16.2Word Frequencies192Word Frequency-MediumN/A
16.3Intersection-
-
-N/AN/A
16.4Tic Tac Win1275Find Winner on a Tic Tac Toe Game-EasyN/A
16.5Factorial Zeros172Factorial Trailing Zeroes-MediumN/A
16.6Smallest Difference-
-
-N/AN/A
16.7Number Max-
-
-N/AN/A
16.8English Int273Integer to English Words-Hard
16.9Operations-
-
-N/AN/A
16.1Living People-
-
-N/AN/A
16.11Diving Board-
-
-N/AN/A
16.12XML Encoding-
-
-N/AN/A
16.13Bisect Squares-
-
-N/AN/A
16.14Best Line149Max Points on a Line-Hard
16.15Master Mind-
-
-N/AN/A
16.16Sub Sort581Shortest Unsorted Continuous Subarray-MediumN/A
16.17Contiguous Sequence53Maximum Subarray-Medium
16.18Pattern Matcher-
-
290 N/AN/A
16.19Pond Sizes-
-
200 N/AN/A
16.2T9-
-
17 N/AN/A
16.21Sum Swap-
-
-N/AN/A
16.22Langtons Ant-
-
-N/AN/A
16.23Rand7 From Rand5470Implement Rand10() Using Rand7()-MediumN/A
16.24Pairs With Sum1679Max Number of K-Sum Pairs-MediumN/A
16.25LRU Cache146LRU Cache-Medium
16.26Calculator227Basic Calculator II-MediumN/A
Hard
17.1Add Without Plus371Sum of Two IntegersN/AMedium
17.2Shuffle384Shuffle an Array-MediumN/A
17.3Random Set-
-
-N/AN/A
17.4Missing Number-
-
268 N/AN/A
17.5Letters and Numbers525Contiguous Array-Medium
17.6Count of 2s-
-
-N/AN/A
17.7Baby Names-
-
-N/AN/A
17.8Circus Tower-
-
-N/AN/A
17.9Kth Multiple-
-
-N/AN/A
17.1Majority Element169Majority Element-Easy
17.11Word Distance244Shortest Word Distance II243 MediumN/A
17.12BiNode426Convert Binary Search Tree to Sorted Doubly Linked List-MediumN/A
17.13ReSpace140Word Break II139 Hard
17.14Smallest K215Kth Largest Element in an Array-Medium
17.15Longest Word-
-
472 N/AN/A
17.16The Masseuse198House Robber-Medium
17.17Multi Search-
-
-N/AN/A
17.18Shortest Supersequence-
-
727 N/AN/A
17.19Missing Two-
-
268 N/AN/A
17.2Continuous Median295Find Median from Data Stream-Hard
17.21Volume of Histogram42Trapping Rain Water-Hard
17.22Word Transformer127Word Ladder-Hard
17.23Max Black Square221Maximal Square-Medium
17.24Max Submatrix-
-
-N/AN/A
17.25Word Rectangle-
-
-N/AN/A
17.26Sparse Similarity-
-
-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.