You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: LeetcodeProblems/Algorithms/easy/Best_Time_to_buy_and_sell_stock.js
+8-8
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ Approach:
33
33
let use initialize Left and Right pointer to first and second position of array
34
34
Here Left is to buy stock and Right is to sell stock
35
35
36
-
Then we initialize our max_profit as 0.
36
+
Then we initialize our maxProfitValue as 0.
37
37
38
38
Now we will start our while loop and we will run till our
39
39
Right pointer less then length of array
@@ -52,19 +52,19 @@ here price[left] is greater than price[right] so we will move left pointer to th
52
52
step 2:
53
53
54
54
price[left]=1 price[right]=5 profit=4
55
-
here price[left] is less than price[right] which means we will get profit so we will update our max_profit and move our right pointer alone
55
+
here price[left] is less than price[right] which means we will get profit so we will update our maxProfitValue and move our right pointer alone
56
56
57
57
step 3:
58
58
59
59
price[left]=1 price[right]=3 profit=2
60
-
here price[left] is less than price[right] which means we will get profit so we will check our max_profit previously it
60
+
here price[left] is less than price[right] which means we will get profit so we will check our maxProfitValue previously it
61
61
62
-
was 4 now our current profit is 2 so we will check which is maximum and update our max_profit and move our right pointer alone
62
+
was 4 now our current profit is 2 so we will check which is maximum and update our maxProfitValue and move our right pointer alone
63
63
64
64
step 4:
65
65
66
66
price[left]=1 price[right]=6 profit=5
67
-
here price[left] is less than price[right] which means we will get profit so we will check our max_profit previously it was 4 now our current profit is 5 so we will check which is maximum and update our max_profit and move our right pointer alone
67
+
here price[left] is less than price[right] which means we will get profit so we will check our maxProfitValue previously it was 4 now our current profit is 5 so we will check which is maximum and update our maxProfitValue and move our right pointer alone
68
68
69
69
step 5:
70
70
@@ -75,18 +75,18 @@ same logic as above
75
75
constmaxProfit=(prices)=>{
76
76
letleft=0;// Buy
77
77
letright=1;// sell
78
-
letmax_profit=0;
78
+
letmaxProfitValue=0;
79
79
while(right<prices.length){
80
80
if(prices[left]<prices[right]){
81
81
letprofit=prices[right]-prices[left];// our current profit
0 commit comments