Search⌘ K
AI Features

DIY: Best Time to Buy and Sell Stock

Explore how to design an algorithm that calculates the maximum possible profit from a single stock transaction. Understand how to analyze stock price arrays and implement a function to identify the optimal buy and sell days, improving your problem-solving skills relevant to coding interviews.

Problem statement

You have an array for which the ith element is the price of a given stock on day i.

If you are only permitted to complete one transaction at most (e.g, buy one and sell one share of the stock), design an algorithm to find the maximum profit.

Note: You cannot sell a stock before you buy one. ...

Input

[7,1,5,3,6,4]