Beta — Opening Soon

Learn to code. Build the future.

Master Python & Data Structures with 199 interactive exercises. Write real code, get instant feedback, zero fluff.

No signup required GitHub Twitter
main.py — CodeRex
Python Basics Arrays Linked Lists Hash Maps Binary Trees Recursion Dynamic Programming Graphs Sorting Stacks & Queues Two Pointers Sliding Window BFS / DFS Greedy Backtracking Python Basics Arrays Linked Lists Hash Maps Binary Trees Recursion Dynamic Programming Graphs Sorting Stacks & Queues Two Pointers Sliding Window BFS / DFS Greedy Backtracking
Why CodeRex

Everything you need.
Nothing you don't.

01

Live Code Editor

Write Python, hit run, see output. Real execution in your browser with a built-in terminal and REPL.

def two_sum(nums, target):
  seen = {}
  for i, n in enumerate(nums):
    if target - n in seen:
      return [seen[target-n], i]
    seen[n] = i
# → [0, 1]
02
🧠

DSA Mastery

156 exercises across 24 chapters. Arrays, trees, graphs, DP — every pattern that matters for interviews. LeetCode links included.

03
🎯

Guided Learning Path

No decision fatigue. Structured chapters build on each other. Rex guides you through every step.

04
🏆

XP & Progress

Earn XP for every exercise. Track your streak. See how far you've come at a glance.

05

Built for Focus

Minimal dark UI, keyboard shortcuts, ADHD-friendly design. No ads, no popups, no social feeds. Just you and the code.

0
Exercises
0
Chapters
0
Courses
0
Total XP
Curriculum

Start with Python.
Then conquer DSA.

Ready to start
your journey?

No signup. No credit card. Just code.

Start Learning Free →
Hey! Start coding! 🔥