Medium
Given an array nums where nums[i] is the quantity of the i-th product, distribute all products to target stores. Each store gets at most one product type and any quantity (including zero). Return the minimum possible value of the maximum number of products given to any single store.
Input: nums = [11,6], target = 10 Output: 3
Input: nums = [15,10,10], target = 7 Output: 5