Skip to content

Instantly share code, notes, and snippets.

@Risyandi
Created January 20, 2023 02:55
Show Gist options
  • Save Risyandi/47137727eccad40e756a7cf6c3d88fe6 to your computer and use it in GitHub Desktop.
Save Risyandi/47137727eccad40e756a7cf6c3d88fe6 to your computer and use it in GitHub Desktop.
function stockPicker(arr) {
// console.log(arr, "log risyandi: data array");
let maxProfit = -1;
for (let index = 0; index < arr.length; index++) {
for (let jindex = index + 1; jindex < arr.length; jindex++) {
let profit = arr[jindex] - arr[index]
console.log(profit, "log risyandi: profit");
if (profit > maxProfit) {
maxProfit = profit
// console.log(maxProfit, "log risyandi: maxProfit");
}
}
}
console.log(maxProfit, "log risyandi: maxProfit result");
return maxProfit;
}
// input:
// let arrayVal = [10, 12, 4, 5, 9];
// output: 5
// input:
// let arrayVal = [14, 20, 4, 12, 5, 11];
// output: 8
// input
let arrayVal = [44, 30, 24, 32, 35, 30, 40, 38, 15];
// output: 16
stockPicker(arrayVal);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment