Best time to buy and sell stock

Tried to solve another question from leetcode involing buy and selling a stock at a specific price. The details are outlined below.

Need some guidance because the code dosen’t work but i’m sure my logic is correct here. The comments outline what i am…


This content originally appeared on DEV Community and was authored by Julian

Tried to solve another question from leetcode involing buy and selling a stock at a specific price. The details are outlined below.

Need some guidance because the code dosen't work but i'm sure my logic is correct here. The comments outline what i am doing step by step for this question.

Image description

Image description

var maxProfit = function(prices) {
    const buy = Math.min(prices);                   //finding the lowest value/ buy price
    const index = prices.indexOf(buy);              //get the index of the buy price
    let temp = [];                                  //temporary array to store possible sell prices
    for (let i=index; i<prices.length-1; i++) {
        if (prices[i] > prices[index]) {            //iterate for every element in prices later than buy price
            temp.push(prices[i]);                   //add the values to the temp array
        }
    }
    const sell = Math.max(temp);                    //get the highest value in this temp array
    const profit = sell-buy;                        //get profit 
    if (sell == null) {
        return 0;
    }
    return profit;
};


This content originally appeared on DEV Community and was authored by Julian


Print Share Comment Cite Upload Translate Updates
APA

Julian | Sciencx (2022-05-12T19:44:07+00:00) Best time to buy and sell stock. Retrieved from https://www.scien.cx/2022/05/12/best-time-to-buy-and-sell-stock/

MLA
" » Best time to buy and sell stock." Julian | Sciencx - Thursday May 12, 2022, https://www.scien.cx/2022/05/12/best-time-to-buy-and-sell-stock/
HARVARD
Julian | Sciencx Thursday May 12, 2022 » Best time to buy and sell stock., viewed ,<https://www.scien.cx/2022/05/12/best-time-to-buy-and-sell-stock/>
VANCOUVER
Julian | Sciencx - » Best time to buy and sell stock. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/05/12/best-time-to-buy-and-sell-stock/
CHICAGO
" » Best time to buy and sell stock." Julian | Sciencx - Accessed . https://www.scien.cx/2022/05/12/best-time-to-buy-and-sell-stock/
IEEE
" » Best time to buy and sell stock." Julian | Sciencx [Online]. Available: https://www.scien.cx/2022/05/12/best-time-to-buy-and-sell-stock/. [Accessed: ]
rf:citation
» Best time to buy and sell stock | Julian | Sciencx | https://www.scien.cx/2022/05/12/best-time-to-buy-and-sell-stock/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.