patching array
-
LeetCode - Patching ArrayAlgorithm 2021. 12. 10. 20:32
안녕하세요. 그린입니다🟢 이번 포스팅에서는 오랜만에 알고리즘을 하나 풀어볼까합니다. 이번에는 LeetCode에서 Patching Array라는 문제를 풀어봤어요! 문제제시 Given a sorted integer array nums and an integer n, add/patch elements to the array such that any number in the range [1, n] inclusive can be formed by the sum of some elements in the array. Return the minimum number of patches required. Example 1: Input: nums = [1,3], n = 6 Output: 1 Explanation: Com..