Leetcode 0121. Best Time to Buy and Sell Stock

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

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

Difficulty: Easy

Premium: False

Question

You are given an array prices where prices[i] is the price of a given stock on the ith day. You want to maximize your profit by choosing a single day to buy one stock and choosing a …


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 0123. Best Time to Buy and Sell Stock III

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

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

Difficulty: Hard

Premium: False

Question

You are given an array prices where prices[i] is the price of a given stock on the ith day. Find the maximum profit you can achieve. You may complete at most two transactions. Note: You may not …


Continue reading

Leetcode 0188. Best Time to Buy and Sell Stock IV

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

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

Difficulty: Hard

Premium: False

Question

You are given an integer array prices where prices[i] is the price of a given stock on the ith day, and an integer k. Find the maximum profit you can achieve. You may complete at most k …


Continue reading