Company: Virtusa..._11oct
Difficulty: medium
5 Days Challenge Problem Description Alice is undertaking a 5-day challenge to read N books, each book containing A pages. Alice must complete the books by distributing the pages as evenly as possible. Your task is to find and return an integer value representing the minimum number of pages she must read in a day to finish all the books in exactly 5 days. Input Specification: input1: An integer value N, representing the number of books. input2: An integer array A, representing the number of pages in each book. Output Specification: Return an integer value representing the minimum number of pages she must read in a day to finish all the books in exactly 5 days. Examples Example 1: Input: input1 = 5, input2 = [4,10,20,30,40] Output: 20 Explanation: Here, the given array is [4,10,20,30,40] so Alice must read the pages in the given manner: The first way: [1,1,1,1,100], where Alice reads 1 page each for the first 4 days, and 100 pages on the last day. So the minimum number of pages read in