Course Schedule
There are numCourses courses (labeled 0 to numCourses-1). Some courses have prerequisites: prerequisites[i] = [a, b] means you must take course b before course a. Return true if you can finish all courses, false if there is a cycle.
This is a premium problem.
Unlock Course Schedule with the full guided learning path and every other premium problem.
Problem
There are a total of numCourses courses you have to take. You are given an array prerequisites where prerequisites[i] = [ai, bi] indicates that you must take course bi first if you want to take course ai. Return true if you can finish all courses, or false otherwise.
Input
An integer `numCourses` and a list of `[course, prerequisite]` pairs.
Output
`true` if all courses can be completed (no cycle exists), `false` otherwise.
Examples
Input: numCourses = 2, prerequisites = [[1,0]]
Output: true
Take course 0 first, then course 1. No cycle.
Input: numCourses = 2, prerequisites = [[1,0],[0,1]]
Output: false
Course 1 requires course 0, and course 0 requires course 1. Circular dependency.
The brute-force approach
For each course, DFS from it following prerequisite chains. If you ever revisit a course already in the current DFS path, there's a cycle.
def hasCycle(course, visited, inPath):
if inPath[course]: return True # cycle
if visited[course]: return False # already cleared
inPath[course] = True
for prereq in adj[course]:
if hasCycle(prereq, visited, inPath):
return True
inPath[course] = False
visited[course] = True
return FalseO(V + E) per DFS call, called for each node. With memoization (marking fully-explored nodes) it becomes O(V + E) total, which is already optimal. The cleaner framing is Kahn's algorithm (BFS topological sort), which detects cycles by checking if all nodes are processed.
Spotting the pattern
This is a Topological Sort problem. The key question to ask yourself:
If a course has zero prerequisites, you can take it immediately. After taking it, what happens to the courses that depended on it?
Answering that is where it clicks, and it's exactly what the guided walkthrough below builds with you: the pattern reasoning, a progressive hint ladder that never spoils the answer, a row-by-row dry run, the optimized solution, and an in-browser editor to run your code against real test cases.
Unlock the full guided solution
The Topological Sort walkthrough for Course Schedule: the progressive hint ladder, a row-by-row dry run, the optimized code, and an in-browser runner, plus the full guided learning path and every other premium problem.
Already finished Big-O and Hash Maps free? This picks up right where the path leads: same format, harder patterns, the ones that show up in every FAANG-style screen.
What you get
- ✓The full guided learning path: concept lessons, drills, graded tests, and cold-read capstones for every pattern
- ✓Stop going blank on algorithm problems. The hint ladder walks you to the answer without spoiling it.
- ✓Actually internalize the trace: dry runs walk state row by row so it clicks before you write a line
- ✓Know when to reach for each pattern. Every problem names the trigger so you spot it next time.
- ✓Write and run JS or Python in the browser with real test cases on every problem
- ✓Access every new problem, unit, and pattern guide as they ship weekly
“This app finally made it click. I tried NeetCode, CTCI, and YouTube for years and still couldn't solve Two Sum. The beginner mental models for the patterns are genuinely so helpful. THANK YOU.”
Founding Member Deal
$29 / year
or $6 / month
LeetCode Premium is $159/year and doesn't teach you anything.
Less than one Udemy course, with guided problems instead of passive lectures.
One extra month of job searching costs more than a full year here.
Your price is locked in for life.
When the 100th founding spot closes, the price goes up for everyone who joins after. Your rate never changes, no matter how much the curriculum grows.
- ✓The full guided learning path, every unit
- ✓All 150 problems across 33 patterns, plus every new one
- ✓New problems and units weekly
- ✓Cancel anytime
Cancel anytime. Not useful within 7 days? Email for a full refund. Secured by Stripe.