Skip to content
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

[Practice] Buying/selling stocks #36

Open
lpatmo opened this issue Mar 29, 2019 · 1 comment
Open

[Practice] Buying/selling stocks #36

lpatmo opened this issue Mar 29, 2019 · 1 comment

Comments

@lpatmo
Copy link
Member

lpatmo commented Mar 29, 2019

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

Example 1:

Input: [7,1,5,3,6,4]
Output: 5
Explanation: Buy on day 2 (price = 1) and sell on day 5 (price = 6), profit = 6-1 = 5.
             Not 7-1 = 6, as selling price needs to be larger than buying price.

Example 2:

Input: [7,6,4,3,1]
Output: 0
Explanation: In this case, no transaction is done, i.e. max profit = 0.
@lpatmo
Copy link
Member Author

lpatmo commented Mar 29, 2019

My JS solution:

/**
 * @param {number[]} prices
 * @return {number}
 */
var maxProfit = function(prices) {
  //sliding window
  let currentProfit = 0;
  let maxProfit = 0;
  let b = 0;
  let s = 1;
  while (b < prices.length-1 && s < prices.length ) {
    if (prices[s] < prices[b]) {
      b = s;
    } else {
      currentProfit = prices[s] - prices[b];
      maxProfit = Math.max(currentProfit, maxProfit);
    }
    s++;
  }
  return maxProfit;
};

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant