Remove One Element to Make the Array Strictly Increasing

Remove One Element to Make the Array Strictly Increasing Solution Given a 0-indexed integer array nums, return true if it can be made strictly increasing after removing exactly one element, or false otherwise. If the array is already strictly increasing, return true. The array nums is strictly increasing if nums[i – 1] < nums[i] for each index (1 <= i < nums.length). Example 1: Input: nums = [1,2,10,5,7]Output: trueExplanation: By removing 10 at index … Read more