Day 14: Scope
https://www.hackerrank.com/challenges/30-scope/problem
// Write your code here
function __construct($a){
$this->elements = $a;
}
public function ComputeDifference(){
$min = min($this->elements);
$max = max($this->elements);
print($max-$min);
}