Problem · Array
Feasibility of Printing Within Given Days
Learn this problemProblem statement
You are given an array pages, where pages[i] is the number of pages in chapter i, a fixed daily printing limit dailyLimit, and an integer days.
Chapters must be printed in order, and a chapter cannot be split across days. Return true if all chapters can be printed within days days; otherwise return false.
Function
canPrintWithinDays(pages: int[], dailyLimit: int, days: int) → booleanExamples
Example 1
pages = [100,200,300,400]dailyLimit = 500days = 3return = trueOne valid schedule is [100,200], [300], and [400], all within the daily limit of 500.