Minimize the maximum difference of adjacent elements after at most K insertions
Given an array of N elements, the task is to minimize the maximum difference of adjacent elements by inserting at most K elements in the array.Examples: Input: arr = [2, 6, 8] K = 1 Output: 2 Explanation: After insertion of 4 in between 2 and 6, the array becomes [2, 4, 6, 8]. In this case the maxim