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

Leetcode 0309. Best Time to Buy and Sell Stock with Cooldown

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

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

Difficulty: Medium

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 as many transactions as you like (i.e …


Continue reading