The document describes an algorithm for job sequencing with deadlines. It takes as input the deadline array D and job array J of size n. It assigns jobs to time slots T while respecting the deadlines, with the goal of maximizing profit. The algorithm initializes the time slots to empty, then iterates through jobs to find the earliest slot k meeting the deadline and assigns the job if the slot is empty, else moves to the next slot. This produces a job sequence with maximum profit respecting all deadlines. An example is provided to illustrate the algorithm.