Leetcode 1058. Minimize Rounding Error to Meet Target

Posted on Sun 02 March 2025 in Leetcode Premium • Tagged with greedy

Question Link : https://leetcode.com/problems/minimize-rounding-error-to-meet-target/

Difficulty: Medium

Premium: True

Question

Given an array of prices [p1,p2...,pn] and a target, round each price pi to Roundi(pi) so that the rounded array [Round1(p1),Round2(p2)...,Roundn(pn)] sums to the given target. Each operation Roundi(pi …


Continue reading

Leetcode 0152. Maximum Product Subarray

Posted on Thu 09 January 2025 in Leetcode • Tagged with dp, greedy, prefix-sum-subarray

Question Link : https://leetcode.com/problems/maximum-product-subarray/

Difficulty: Medium

Premium: False

Question

Given an integer array nums, find a subarray that has the largest product, and return the product. The test cases are generated so that the answer will fit in a 32-bit integer.   Example 1:

Input: nums = [2,3 …


Continue reading

Leetcode 0055. Jump Game

Posted on Thu 02 January 2025 in Leetcode • Tagged with dp, greedy

Question Link : https://leetcode.com/problems/jump-game/

Difficulty: Medium

Premium: False

Question

You are given an integer array nums. You are initially positioned at the array's first index, and each element in the array represents your maximum jump length at that position. Return true if you can reach the last …


Continue reading

Leetcode 0122. Best Time to Buy and Sell Stock II

Posted on Thu 26 December 2024 in Leetcode • Tagged with dp-stock, greedy

Question Link : https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii/

Difficulty: Medium

Premium: False

Question

You are given an integer array prices where prices[i] is the price of a given stock on the ith day. On each day, you may decide to buy and/or sell the stock. You can only hold …


Continue reading

Leetcode 0621. Task Scheduler

Posted on Sun 08 December 2024 in Leetcode • Tagged with greedy, math

Question Link : https://leetcode.com/problems/task-scheduler/

Difficulty: Medium

Premium: False

Question

You are given an array of CPU tasks, each labeled with a letter from A to Z, and a number n. Each CPU interval can be idle or allow the completion of one task. Tasks can be completed …


Continue reading

Leetcode 0277. Find the Celebrity

Posted on Tue 03 December 2024 in Leetcode Premium • Tagged with greedy

Question Link : https://leetcode.com/problems/find-the-celebrity/

Difficulty: Medium

Premium: True

Question

Suppose you are at a party with n people labeled from 0 to n - 1 and among them, there may exist one celebrity. The definition of a celebrity is that all the other n - 1 people know the …


Continue reading

Leetcode 2405. Optimal Partition of String

Posted on Mon 03 April 2023 in Leetcode • Tagged with string, greedy

Question Link : https://leetcode.com/problems/optimal-partition-of-string/

Difficulty: Medium

Premium: False

Question

Given a string s, partition the string into one or more substrings such that the characters in each substring are unique. That is, no letter appears in a single substring more than once. Return the minimum number of …


Continue reading

Leetcode 0881. Boats to Save People

Posted on Sun 02 April 2023 in Leetcode • Tagged with two-pointers, greedy

Question Link : https://leetcode.com/problems/boats-to-save-people/

Difficulty: Medium

Premium: False

Question

You are given an array people where people[i] is the weight of the ith person, and an infinite number of boats where each boat can carry a maximum weight of limit. Each boat carries at most two …


Continue reading

Leetcode 0435. Non-overlapping Intervals

Posted on Sun 13 November 2022 in Leetcode • Tagged with interval-merge, greedy

Question Link : https://leetcode.com/problems/non-overlapping-intervals/

Difficulty: Medium

Question

Given an array of intervals intervals where intervals[i] = [starti, endi], return the minimum number of intervals you need to remove to make the rest of the intervals non-overlapping.   Example 1:

Input: intervals = [[1,2],[2,3],[3,4],[1 …


Continue reading

Leetcode 0495. Teemo Attacking

Posted on Sun 13 November 2022 in Leetcode • Tagged with greedy, interval-merge, simulation

Question Link : https://leetcode.com/problems/teemo-attacking/

Difficulty: Easy

Question

Our hero Teemo is attacking an enemy Ashe with poison attacks! When Teemo attacks Ashe, Ashe gets poisoned for a exactly duration seconds. More formally, an attack at second t will mean Ashe is poisoned during the inclusive time interval …


Continue reading