xgqfrms™, xgqfrms® : xgqfrms's offical website of cnblogs! xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!

LeetCode 330 Patching Array All In One

LeetCode 330 Patching Array All In One

  1. Patching Array

solutions

function minPatches(nums: number[], n: number): number {
  let patch = 1;
  let count = 0;
  let i = 0;
  while (patch <= n) {
    if (nums[i] <= patch && i < nums.length) {
      patch += nums[i];
      i++;
    } else {
      patch += patch;
      count++;
    }
  }
  return count;
};

image


https://leetcode.com/problems/patching-array/description/?envType=daily-question&envId=2024-06-16

demos


refs



©xgqfrms 2012-2025

www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!

原创文章,版权所有©️xgqfrms, 禁止转载 🈲️,侵权必究⚠️!


posted @   xgqfrms  阅读(5)  评论(1编辑  收藏  举报
点击右上角即可分享
微信分享提示