Exemplo n.º 1
0
 public function __invoke()
 {
     $input = $this->loadInput("Day14/Puzzle1");
     $parser = new InstructionsParser();
     $herd = $parser->parse($input);
     $race = new Race($herd);
     $duration = 2503;
     $winner = $race->winnerAfter($duration);
     $this->write("Winner: " . $winner->name() . ", who has flown " . $winner->distanceAfter($duration));
 }