This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// calcuale the greatest profit | |
function evaluate() { | |
// store greatest profit | |
let evaluation = -1; | |
// calculate position | |
return function (min, max) { | |
const profit = max - min; | |
evaluation = evaluation < profit ? profit : evaluation; |