Interview Guides
Given a list of projects where each project is represented as [duration, deadline], return the maximum number of projects that can be completed without missing any deadline. A project takes duration units of time and must be finished on or before deadline. Implement a function that returns an integer.
1 <= len(projects) <= 10^41 <= duration, deadline <= 10^4