Skip to content

Commit 3ba974c

Browse files
authored
Update 121.best-time-to-buy-and-sell-stock.md
1 parent 66679d6 commit 3ba974c

File tree

1 file changed

+0
-41
lines changed

1 file changed

+0
-41
lines changed

problems/121.best-time-to-buy-and-sell-stock.md

-41
Original file line numberDiff line numberDiff line change
@@ -45,47 +45,6 @@ Explanation: In this case, no transaction is done, i.e. max profit = 0.
4545
JS Code:
4646

4747
```js
48-
/*
49-
* @lc app=leetcode id=121 lang=javascript
50-
*
51-
* [121] Best Time to Buy and Sell Stock
52-
*
53-
* https://leetcode.com/problems/best-time-to-buy-and-sell-stock/description/
54-
*
55-
* algorithms
56-
* Easy (46.34%)
57-
* Total Accepted: 480.5K
58-
* Total Submissions: 1M
59-
* Testcase Example: '[7,1,5,3,6,4]'
60-
*
61-
* Say you have an array for which the i^th element is the price of a given
62-
* stock on day i.
63-
*
64-
* If you were only permitted to complete at most one transaction (i.e., buy
65-
* one and sell one share of the stock), design an algorithm to find the
66-
* maximum profit.
67-
*
68-
* Note that you cannot sell a stock before you buy one.
69-
*
70-
* Example 1:
71-
*
72-
*
73-
* Input: [7,1,5,3,6,4]
74-
* Output: 5
75-
* Explanation: Buy on day 2 (price = 1) and sell on day 5 (price = 6), profit
76-
* = 6-1 = 5.
77-
* Not 7-1 = 6, as selling price needs to be larger than buying price.
78-
*
79-
*
80-
* Example 2:
81-
*
82-
*
83-
* Input: [7,6,4,3,1]
84-
* Output: 0
85-
* Explanation: In this case, no transaction is done, i.e. max profit = 0.
86-
*
87-
*
88-
*/
8948
/**
9049
* @param {number[]} prices
9150
* @return {number}

0 commit comments

Comments
 (0)