Array.range = (start, stop, step=1) => {
let A = [start];
while(start+step <= stop){
A = [...A, start+=step];
}
return A;
}function maxStockProfit(pricesArr) {
const Price = {
'buy': 0,
'sell': 0,
'change': true
};
Copied from Computer Hope
For each file, getfacl displays the file name, owner, the group, and the ACL (Access Control List). If a directory has a default ACL, getfacl also displays the default ACL. Non-directories cannot have default ACLs.
If getfacl is used on a file system that does not support ACLs, getfacl displays the access permissions defined by the traditional file mode permission bits.
The output format of getfacl is as follows:
1: # file: somedir/
OlderNewer