Leetcode 1235. Maximum Profit in Job Scheduling

Posted on Thu 06 February 2025 in Leetcode • Tagged with dp, priority-queue

Question Link : https://leetcode.com/problems/maximum-profit-in-job-scheduling/

Difficulty: Hard

Premium: False

Question

We have n jobs, where every job is scheduled to be done from startTime[i] to endTime[i], obtaining a profit of profit[i]. You're given the startTime, endTime and profit arrays, return the maximum profit you can …


Continue reading

Leetcode 1091. Shortest Path in Binary Matrix

Posted on Fri 24 January 2025 in Leetcode • Tagged with bfs-for-shortest-path, priority-queue

Question Link : https://leetcode.com/problems/shortest-path-in-binary-matrix/

Difficulty: Medium

Premium: False

Question

Given an n x n binary matrix grid, return the length of the shortest clear path in the matrix. If there is no clear path, return -1. A clear path in a binary matrix is a path from …


Continue reading

Leetcode 0253. Meeting Rooms II

Posted on Fri 27 December 2024 in Leetcode Premium • Tagged with interval-merge, interval-overlap, priority-queue

Question Link : https://leetcode.com/problems/meeting-rooms-ii/

Difficulty: Medium

Premium: True

Question

Given an array of meeting time intervals intervals where intervals[i] = [starti, endi], return the minimum number of conference rooms required.   Example 1: Input: intervals = [[0,30],[5,10],[15,20]] Output: 2 Example 2: Input: intervals = [[7 …


Continue reading

Leetcode 2182. Construct String With Repeat Limit

Posted on Mon 16 December 2024 in Leetcode • Tagged with priority-queue

Question Link : https://leetcode.com/problems/construct-string-with-repeat-limit/

Difficulty: Medium

Premium: False

Question

You are given a string s and an integer repeatLimit. Construct a new string repeatLimitedString using the characters of s such that no letter appears more than repeatLimit times in a row. You do not have to use …


Continue reading

Leetcode 3264. Final Array State After K Multiplication Operations I

Posted on Sun 15 December 2024 in Leetcode • Tagged with priority-queue

Question Link : https://leetcode.com/problems/final-array-state-after-k-multiplication-operations-i/

Difficulty: Easy

Premium: False

Question

You are given an integer array nums, an integer k, and an integer multiplier. You need to perform k operations on nums. In each operation:

Find the minimum value x in nums. If there are multiple occurrences of …


Continue reading

Leetcode 0215. Kth Largest Element in an Array

Posted on Tue 10 December 2024 in Leetcode • Tagged with k-most-points, priority-queue, bubble-sort, quick-sort, counting-sort

Question Link : https://leetcode.com/problems/kth-largest-element-in-an-array/

Difficulty: Medium

Premium: False

Question

Given an integer array nums and an integer k, return the kth largest element in the array. Note that it is the kth largest element in the sorted order, not the kth distinct element. Can you solve it …


Continue reading

Leetcode 1046. Last Stone Weight

Posted on Mon 24 April 2023 in Leetcode • Tagged with priority-queue

Question Link : https://leetcode.com/problems/last-stone-weight/

Difficulty: Easy

Premium: False

Question

You are given an array of integers stones where stones[i] is the weight of the ith stone. We are playing a game with the stones. On each turn, we choose the heaviest two stones and smash them …


Continue reading