function create() {const a 100return function() {console.log(a);}
}
const fn create()
const a 200;
fn() //100function print(fn) {let a 200;fn();
}
let a 100function fn() {console.log(a)
}
print(fn)//100
题目: Given n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of line i is at (i, ai) and (i, 0). Find two lines, which together with x-axis forms…