jwasham/coding-interview-universityPublic

A complete computer science study plan to become a software engineer.

AI summary: A complete, multi-month study plan for becoming a software engineer and passing big tech interviews.

Stars
358.1K
+112 today
Forks
84.5K
Watchers
8.6K
Open issues
81
Open PRs
43
Contributors
~355
Commits
2.5K
Branches
2

CC-BY-SA-4.0Created Jun 6, 2016Last push 11mo ago+542 stars this week+679 this month

Star history

since Feb 26, 2017
0100K200K300KFeb 2017Apr 2020May 2023Aug 2026
358.1K stars as of Aug 7, 2026, tracked back to Feb 26, 2017. Historical curve reconstructed from public GitHub event archives, calibrated to the current total.

Contribution activity

commits per day, last 52 weeks

Signals and awards

derived from tracked data
  • Landmark project

    358,110 stars

  • Battle-tested

    10 years of history

  • Community-driven

    ~355 contributors

  • Continuous integration

    Automated checks passing

  • Top 10% tracked

    Rank 10 of 1058

What coding-interview-university does

Coding Interview University is a legendary study plan originally created by the author to land a job at Amazon. It outlines a rigorous, day-by-day curriculum covering data structures, algorithms, system design, and computer science fundamentals. The repository acts as a giant checklist, curating the best free videos, articles, and book chapters for every single topic a software engineer needs to know. It transforms the overwhelming process of preparing for technical interviews into a structured, manageable, and highly effective educational journey.

This repository is for aspiring software engineers, self-taught developers, and bootcamp graduates who want to master computer science fundamentals. It requires intense dedication and is specifically tailored for passing challenging technical interviews.

  • Structured curriculum: Provides a clear, step-by-step daily study plan that takes months to complete.
  • Comprehensive curation: Links to the absolute best free resources, including MIT lectures and deep-dive articles.
  • Interactive checklist: Designed as a markdown checklist so learners can track their progress through the massive syllabus.
  • CS fundamentals: Covers core computer science concepts often missed by bootcamp graduates, like memory management and networking.
  • Interview strategy: Includes specific advice on resume writing, behavioral questions, and whiteboard coding tactics.

Where teams use it

Big Tech Interview Prep

Candidates follow the plan meticulously to pass the rigorous algorithmic interviews at companies like Google and Meta.

Self-Taught Education

Bootcamp graduates use the curriculum to fill in the theoretical computer science gaps in their practical knowledge.

Skill Refreshing

Experienced engineers revisit specific sections to brush up on algorithms they haven't used in years before a job hunt.

Career Transitioning

Non-traditional developers use the structured path to formally transition into professional software engineering roles.

Getting started: git clone https://github.com/jwasham/coding-interview-university.git

README

main branch

Coding Interview University

I originally created this as a short to-do list of study topics for becoming a software engineer, but it grew to the large list you see today. After going through this study plan, I got hired as a Software Development Engineer at Amazon! You probably won't have to study as much as I did. Anyway, everything you need is here.

I studied about 8-12 hours a day, for several months. This is my story: Why I studied full-time for 8 months for a Google interview

Please Note: You won't need to study as much as I did. I wasted a lot of time on things I didn't need to know. More info about that is below. I'll help you get there without wasting your precious time.

The items listed here will prepare you well for a technical interview at just about any software company, including the giants: Amazon, Facebook, Google, and Microsoft.

Best of luck to you!

Translations:
Translations in progress:

What is it?

Coding at the whiteboard - from HBO's Silicon Valley

This is my multi-month study plan for becoming a software engineer for a large company.

Required:

  • A little experience with coding (variables, loops, methods/functions, etc)
  • Patience
  • Time

Note this is a study plan for software engineering, not frontend engineering or full-stack development. There are really super roadmaps and coursework for those career paths elsewhere (see https://roadmap.sh/ for more info).

There is a lot to learn in a university Computer Science program, but only knowing about 75% is good enough for an interview, so that's what I cover here. For a complete CS self-taught program, the resources for my study plan have been included in Kamran Ahmed's Computer Science Roadmap: https://roadmap.sh/computer-science


Table of Contents

The Study Plan

Topics of Study

Getting the Job

---------------- Everything below this point is optional ----------------

Optional Extra Topics & Resources


Why use it?

If you want to work as a software engineer for a large company, these are the things you have to know.

If you missed out on getting a degree in computer science, like I did, this will catch you up and save four years of your life.

When I started this project, I didn't know a stack from a heap, didn't know Big-O anything, or anything about trees, or how to traverse a graph. If I had to code a sorting algorithm, I can tell ya it would have been terrible. Every data structure I had ever used was built into the language, and I didn't know how they worked under the hood at all. I never had to manage memory unless a process I was running would give an "out of memory" error, and then I'd have to find a workaround. I used a few multidimensional arrays in my life and thousands of associative arrays, but I never created data structures from scratch.

It's a long plan. It may take you months. If you are familiar with a lot of this already it will take you a lot less time.

⬆ back to top

How to use it

Everything below is an outline, and you should tackle the items in order from top to bottom.

I'm using GitHub's special markdown flavor, including tasks lists to track progress.

If you don't want to use git

On this page, click the Code button near the top, then click "Download ZIP". Unzip the file and you can work with the text files.

If you're open in a code editor that understands markdown, you'll see everything formatted nicely.

How to download the repo as a zip file

If you're comfortable with git

Create a new branch so you can check items like this, just put an x in the brackets: [x]

  1. Fork the GitHub repo: https://github.com/jwasham/coding-interview-university by clicking on the Fork button.

    Fork the GitHub repo

  2. Clone to your local repo:

    git clone https://github.com/<YOUR_GITHUB_USERNAME>/coding-interview-university.git
    cd coding-interview-university
    git remote add upstream https://github.com/jwasham/coding-interview-university.git
    git remote set-url --push upstream DISABLE  # so that you don't push your personal progress back to the original repo
  3. Mark all boxes with X after you completed your changes:

    git commit -am "Marked personal progress"
    git pull upstream main  # keep your fork up-to-date with changes from the original repo
    
    git push # just pushes to your fork

⬆ back to top

Don't feel you aren't smart enough

⬆ back to top

A Note About Video Resources

Some videos are available only by enrolling in a Coursera or EdX class. These are called MOOCs. Sometimes the classes are not in session so you have to wait a couple of months, so you have no access.

It would be great to replace the online course resources with free and always-available public sources, such as YouTube videos (preferably university lectures), so that you people can study these anytime, not just when a specific online course is in session.

⬆ back to top

Choose a Programming Language

You'll need to choose a programming language for the coding interviews you do, but you'll also need to find a language that you can use to study computer science concepts.

Preferably the language would be the same, so that you only need to be proficient in one.

For this Study Plan

When I did the study plan, I used 2 languages for most of it: C and Python

  • C: Very low level. Allows you to deal with pointers and memory allocation/deallocation, so you feel the data structures and algorithms in your bones. In higher-level languages like Python or Java, these are hidden from you. In day-to-day work, that's terrific, but when you're learning how these low-level data structures are built, it's great to feel close to the metal.
    • C is everywhere. You'll see examples in books, lectures, videos, everywhere while you're studying.
    • The C Programming Language, 2nd Edition
      • This is a short book, but it will give you a great handle on the C language and if you practice it a little you'll quickly get proficient. Understanding C helps you understand how programs and memory work.
      • You don't need to go super deep in the book (or even finish it). Just get to where you're comfortable reading and writing in C.
  • Python: Modern and very expressive, I learned it because it's just super useful and also allows me to write less code in an interview.

This is my preference. You do what you like, of course.

You may not need it, but here are some sites for learning a new language:

For your Coding Interview

You can use a language you are comfortable in to do the coding part of the interview, but for large companies, these are solid choices:

  • C++
  • Java
  • Python

You could also use these, but read around first. There may be caveats:

  • JavaScript
  • Ruby

Here is an article I wrote about choosing a language for the interview: Pick One Language for the Coding Interview. This is the original article my post was based on: Choosing a Programming Language for Interviews

You need to be very comfortable in the language and be knowledgeable.

Read more about choices:

See language-specific resources here

⬆ back to top

Books for Data Structures and Algorithms

This book will form your foundation for computer science.

Just choose one, in a language that you will be comfortable with. You'll be doing a lot of reading and coding.

Python

  • Coding Interview Patterns: Nail Your Next Coding Interview (Main Recommendation)
    • An insider’s perspective on what interviewers are truly looking for and why.
    • 101 real coding interview problems with detailed solutions.
    • Intuitive explanations that guide you through each problem as if you were solving it in a live interview.
    • 1000+ diagrams to illustrate key concepts and patterns.

C

Java

Your choice:

C++

Your choice:

⬆ back to top

Interview Prep Books

Here are some recommended books to supplement your learning.

If you have tons of extra time:

Choose one:

⬆ back to top

Don't Make My Mistakes

This list grew over many months, and yes, it got out of hand.

Here are some mistakes I made so you'll have a better experience. And you'll save months of time.

1. You Won't Remember it All

I watched hours of videos and took copious notes, and months later there was much I didn't remember. I spent 3 days going through my notes and making flashcards, so I could review. I didn't need all of that knowledge.

Please, read so you won't make my mistakes:

Retaining Computer Science Knowledge.

2. Use Flashcards

To solve the problem, I made a little flashcard site where I could add flashcards of 2 types: general and code. Each card has a different formatting. I made a mobile-first website, so I could review on my phone or tablet, wherever I am.

Make your own for free:

I DON'T RECOMMEND using my flashcards. There are too many and most of them are trivia that you don't need.

But if you don't want to listen to me, here you go:

Keep in mind I went overboard and have cards covering everything from assembly language and Python trivia to machine learning and statistics. It's way too much for what's required.

Note on flashcards: The first time you recognize you know the answer, don't mark it as known. You have to see the same card and answer it several times correctly before you really know it. Repetition will put that knowledge deeper in your brain.

An alternative to using my flashcard site is Anki, which has been recommended to me numerous times. It uses a repetition system to help you remember. It's user-friendly, available on all platforms, and has a cloud sync system. It costs $25 on iOS but is free on other platforms.

My flashcard database in Anki format: https://ankiweb.net/shared/info/25173560 (thanks @xiewenya).

Some students have mentioned formatting issues with white space that can be fixed by doing the following: open the deck, edit the card, click cards, select the "styling" radio button, and add the member "white-space: pre;" to the card class.

3. Do Coding Interview Questions While You're Learning

THIS IS VERY IMPORTANT.

Start doing coding interview questions while you're learning data structures and algorithms.

You need to apply what you're learning to solve problems, or you'll forget. I made this mistake.

Once you've learned a topic, and feel somewhat comfortable with it, for example, linked lists:

  1. Open one of the coding interview books (or coding problem websites, listed below)
  2. Do 2 or 3 questions regarding linked lists.
  3. Move on to the next learning topic.
  4. Later, go back and do another 2 or 3 linked list problems.
  5. Do this with each new topic you learn.

Keep doing problems while you're learning all this stuff, not after.

You're not being hired for knowledge, but how you apply the knowledge.

There are many resources for this, listed below. Keep going.

4. Focus

There are a lot of distractions that can take up valuable time. Focus and concentration are hard. Turn on some music without lyrics and you'll be able to focus pretty well.

⬆ back to top

What you won't see covered

These are prevalent technologies but not part of this study plan:

  • Javascript
  • HTML, CSS, and other front-end technologies
  • SQL

⬆ back to top

The Daily Plan

This course goes over a lot of subjects. Each will probably take you a few days, or maybe even a week or more. It depends on your schedule.

Each day, take the next subject in the list, watch some videos about that subject, and then write an implementation of that data structure or algorithm in the language you chose for this course.

You can see my code here:

You don't need to memorize every algorithm. You just need to be able to understand it enough to be able to write your own implementation.

⬆ back to top

Coding Question Practice

Why is this here? I'm not ready to interview.

Then go back and read this.

Why you need to practice doing programming problems:

  • Problem recognition, and where the right data structures and algorithms fit in
  • Gathering requirements for the problem
  • Talking your way through the problem like you will in the interview
  • Coding on a whiteboard or paper, not a computer
  • Coming up with time and space complexity for your solutions (see Big-O below)
  • Testing your solutions

There is a great intro for methodical, communicative problem-solving in an interview. You'll get this from the programming interview books, too, but I found this outstanding: Algorithm design canvas

Write code on a whiteboard or paper, not a computer. Test with some sample inputs. Then type it and test it out on a computer.

If you don't have a whiteboard at home, pick up a large drawing pad from an art store. You can sit on the couch and practice. This is my "sofa whiteboard". I added the pen in the photo just for scale. If you use a pen, you'll wish you could erase. Gets messy quickly. I use a pencil and eraser.

my sofa whiteboard

Coding question practice is not about memorizing answers to programming problems.

⬆ back to top

Coding Problems

Don't forget your key coding interview books here.

Solving Problems:

Coding Interview Question Videos:

Challenge/Practice sites:

  • LeetCode
    • My favorite coding problem site. It's worth the subscription money for the 1-2 months you'll likely be preparing.
    • See Nick White and FisherCoder Videos above for code walk-throughs.
  • HackerRank
  • TopCoder
  • Codeforces
  • Codility
  • Geeks for Geeks
  • AlgoExpert
    • Created by Google engineers, this is also an excellent resource to hone your skills.
  • Project Euler
    • very math-focused, and not really suited for coding interviews

⬆ back to top

Let's Get Started

Alright, enough talk, let's learn!

But don't forget to do coding problems from above while you learn!

Algorithmic complexity / Big-O / Asymptotic analysis

Well, that's about enough of that.

When you go through "Cracking the Coding Interview", there is a chapter on this, and at the end there is a quiz to see if you can identify the runtime complexity of different algorithms. It's a super review and test.

⬆ back to top

Data Structures

⬆ back to top

More Knowledge

⬆ back to top

Trees

⬆ back to top

Sorting

View on GitHub

Recent activity

commits and pull requests

Recent open issues

view all

Code frequency

additions and deletions

Commits per week

last 52 weeks

When work happens

weekday and hour
SunMonTueWedThuFriSat036912151821Sun 0:00 — 3 commitsSun 1:00 — 1 commitsSun 2:00 — 2 commitsSun 3:00 — 6 commitsSun 4:00 — 7 commitsSun 5:00 — 1 commitsSun 6:00 — 4 commitsSun 7:00 — 2 commitsSun 8:00 — 2 commitsSun 9:00 — 10 commitsSun 10:00 — 18 commitsSun 11:00 — 12 commitsSun 12:00 — 23 commitsSun 13:00 — 17 commitsSun 14:00 — 8 commitsSun 15:00 — 6 commitsSun 16:00 — 15 commitsSun 17:00 — 9 commitsSun 18:00 — 16 commitsSun 19:00 — 10 commitsSun 20:00 — 14 commitsSun 21:00 — 23 commitsSun 22:00 — 7 commitsSun 23:00 — 9 commitsMon 0:00 — 5 commitsMon 1:00 — 20 commitsMon 2:00 — 6 commitsMon 3:00 — 1 commitsMon 4:00 — 0 commitsMon 5:00 — 1 commitsMon 6:00 — 1 commitsMon 7:00 — 3 commitsMon 8:00 — 3 commitsMon 9:00 — 11 commitsMon 10:00 — 9 commitsMon 11:00 — 23 commitsMon 12:00 — 10 commitsMon 13:00 — 11 commitsMon 14:00 — 9 commitsMon 15:00 — 21 commitsMon 16:00 — 7 commitsMon 17:00 — 18 commitsMon 18:00 — 12 commitsMon 19:00 — 11 commitsMon 20:00 — 25 commitsMon 21:00 — 30 commitsMon 22:00 — 28 commitsMon 23:00 — 24 commitsTue 0:00 — 21 commitsTue 1:00 — 8 commitsTue 2:00 — 4 commitsTue 3:00 — 1 commitsTue 4:00 — 0 commitsTue 5:00 — 2 commitsTue 6:00 — 2 commitsTue 7:00 — 4 commitsTue 8:00 — 6 commitsTue 9:00 — 11 commitsTue 10:00 — 35 commitsTue 11:00 — 21 commitsTue 12:00 — 24 commitsTue 13:00 — 15 commitsTue 14:00 — 6 commitsTue 15:00 — 19 commitsTue 16:00 — 18 commitsTue 17:00 — 20 commitsTue 18:00 — 20 commitsTue 19:00 — 26 commitsTue 20:00 — 17 commitsTue 21:00 — 42 commitsTue 22:00 — 32 commitsTue 23:00 — 18 commitsWed 0:00 — 1 commitsWed 1:00 — 6 commitsWed 2:00 — 2 commitsWed 3:00 — 4 commitsWed 4:00 — 0 commitsWed 5:00 — 1 commitsWed 6:00 — 4 commitsWed 7:00 — 4 commitsWed 8:00 — 24 commitsWed 9:00 — 21 commitsWed 10:00 — 38 commitsWed 11:00 — 14 commitsWed 12:00 — 16 commitsWed 13:00 — 11 commitsWed 14:00 — 17 commitsWed 15:00 — 16 commitsWed 16:00 — 10 commitsWed 17:00 — 19 commitsWed 18:00 — 7 commitsWed 19:00 — 16 commitsWed 20:00 — 19 commitsWed 21:00 — 20 commitsWed 22:00 — 20 commitsWed 23:00 — 8 commitsThu 0:00 — 2 commitsThu 1:00 — 4 commitsThu 2:00 — 2 commitsThu 3:00 — 2 commitsThu 4:00 — 0 commitsThu 5:00 — 0 commitsThu 6:00 — 3 commitsThu 7:00 — 4 commitsThu 8:00 — 10 commitsThu 9:00 — 13 commitsThu 10:00 — 22 commitsThu 11:00 — 26 commitsThu 12:00 — 18 commitsThu 13:00 — 23 commitsThu 14:00 — 19 commitsThu 15:00 — 15 commitsThu 16:00 — 20 commitsThu 17:00 — 8 commitsThu 18:00 — 17 commitsThu 19:00 — 12 commitsThu 20:00 — 18 commitsThu 21:00 — 21 commitsThu 22:00 — 8 commitsThu 23:00 — 11 commitsFri 0:00 — 2 commitsFri 1:00 — 4 commitsFri 2:00 — 1 commitsFri 3:00 — 4 commitsFri 4:00 — 8 commitsFri 5:00 — 4 commitsFri 6:00 — 1 commitsFri 7:00 — 4 commitsFri 8:00 — 12 commitsFri 9:00 — 11 commitsFri 10:00 — 12 commitsFri 11:00 — 21 commitsFri 12:00 — 16 commitsFri 13:00 — 15 commitsFri 14:00 — 16 commitsFri 15:00 — 17 commitsFri 16:00 — 17 commitsFri 17:00 — 18 commitsFri 18:00 — 9 commitsFri 19:00 — 9 commitsFri 20:00 — 12 commitsFri 21:00 — 19 commitsFri 22:00 — 14 commitsFri 23:00 — 11 commitsSat 0:00 — 0 commitsSat 1:00 — 6 commitsSat 2:00 — 3 commitsSat 3:00 — 0 commitsSat 4:00 — 0 commitsSat 5:00 — 0 commitsSat 6:00 — 1 commitsSat 7:00 — 0 commitsSat 8:00 — 3 commitsSat 9:00 — 3 commitsSat 10:00 — 14 commitsSat 11:00 — 14 commitsSat 12:00 — 13 commitsSat 13:00 — 7 commitsSat 14:00 — 15 commitsSat 15:00 — 16 commitsSat 16:00 — 7 commitsSat 17:00 — 23 commitsSat 18:00 — 11 commitsSat 19:00 — 8 commitsSat 20:00 — 14 commitsSat 21:00 — 11 commitsSat 22:00 — 10 commitsSat 23:00 — 3 commits
Commit volume by weekday and hour (UTC). Larger dots mean more commits.
DateListRankStars gained
May 2, 2026daily#14+151