Complete Problem Index

Updated · techinterview.org

Complete Problem Index

Browse all 59 technical interview problems on our site. Each problem includes detailed strategy, complete solution with code, complexity analysis, and related problems.

Quick Navigation

Easy-Medium Problems (5)

Great for beginners and interview warm-ups. Most center on strings and linked lists, so use them to get fluent with the mechanics before a timed round. Several are palindrome and reversal questions that reduce to a clean two pointers walk from both ends — exactly the tidy solution interviewers hope you reach without hints.

Medium Problems (49)

Most common interview difficulty. Master these for FAANG interviews. This is where the bulk of coding rounds live, and the skill being tested is recognizing which of the core coding patterns a problem maps to — a hash map for ‘Sum Up a Pair in Array’, a topological sort for dependency ordering, or a design-flavored question like ‘Implement a rate limiter’ that pulls in system design. Interviewers probe whether you can name the time and space cost of your approach before you write code, then tighten it when pushed.

Hard Problems (5)

Advanced problems for senior roles and top companies. Expect graph and structure-heavy algorithms — Dijkstra’s shortest path, union-find for connected components, and serializing a binary tree — where the interviewer weighs your data-structure choice and edge-case handling as much as a working answer. A concrete tell of a strong candidate: name the complexity, cover the empty and single-node cases, and explain why the chosen structure beats the naive one.

newsletter

What's actually being asked right now

Interview patterns & comp trends, straight to your inbox.

No spam. Unsubscribe anytime.

1972 Soviet postage stamp commemorating the Mars 2 probe

worth a read

Mars For The Rest of Us — a weekly-or-more deep dive on the technical side of Mars exploration: rocket propulsion, microbiology, mission architecture, and everything in between. Written by Maciej Ceglowski.

Read it on Substack
Scroll to Top