```/**
*
* @param prices int整型一维数组
* @return int整型
*/
function maxProfit( prices ) {
// write code here
//首先判断是否有利益,只需要数组任意一个数减去后面的数小于0即可,但是要注意时间复杂度
//这里时间复杂度n,可以采用双层for循环解决
let max = 0
for(let i=0;i<prices.length-1;i++){
let temp = prices[i]
for(let j=i+1;j<prices.length;j++){
if(prices[j]>prices[i]){
let diff=prices[j]-prices[i]
max=diff>max?diff:max
}
}
}
return max
}
module.exports = {
maxProfit : maxProfit
};