Easy
Given a strictly increasing array of positive integers nums and an integer target (= k), return the target-th positive integer that is missing from the array.
Input: nums = [2,3,4,7,11], target = 5 Output: 9
Input: nums = [1,2,3,4], target = 2 Output: 6