-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpractice.js
53 lines (40 loc) · 1.16 KB
/
practice.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
let findBuySellStockPrices = function(array){
if (!array||array.length<2){
return
}
let currentBuy = array[0]
let globalSell = array[1]
let globalProfit = globalSell - currentBuy
let currentProfit = 0
for(let i=1;i<array.length;i++){
currentProfit = array[i] - currentBuy
if(currentProfit>globalProfit){
globalProfit = currentProfit
globalSell = array[i]
}
if(currentBuy>array[i]){
currentBuy=array[i]
}
}
return [globalSell-globalProfit, globalSell]
}
let findBuySellStockPrices = function(array) {
if (!array || array.length < 2) {
return;
}
let currentBuy = array[0];
let globalSell = array[1];
let globalProfit = globalSell - currentBuy;
let currentProfit = 0;
for (let i = 1; i < array.length; i++) {
currentProfit = array[i] - currentBuy;
if (currentProfit > globalProfit) {
globalProfit = currentProfit;
globalSell = array[i];
}
if (currentBuy > array[i]) {
currentBuy = array[i];
}
}
return [globalSell - globalProfit, globalSell];
};