Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Create BestTimeToBuyAndSellStock2.js #1755

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
shail-patel-321 wants to merge 1 commit into TheAlgorithms:master
base: master
Choose a base branch
Loading
from shail-patel-321:master
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions Dynamic-Programming/BestTimeToBuyAndSellStock2.js
View file Open in desktop
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
// Link :- https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii/
/*
* 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 at most one share of the stock at any time. However, you can buy it then immediately sell it on the same day.
* Find and return the maximum profit you can achieve.
*/

/**
* @param {number[]} prices
* @return {number}
*/
var maxProfit = function(prices) {
const n = prices.length;
const dp = Array.from({ length: n }, () => Array(2).fill(0));

for (let i = n - 1; i >= 0; i--) {
if (i === n - 1) {
dp[i][0] = 0;
dp[i][1] = prices[i];
continue;
}
dp[i][0] = Math.max(dp[i + 1][1] - prices[i], dp[i + 1][0]);
dp[i][1] = Math.max(dp[i + 1][1], dp[i + 1][0] + prices[i]);
}

return dp[0][0];
};
Loading

AltStyle によって変換されたページ (->オリジナル) /