@@ -65,7 +65,7 @@ |
||
| 65 | 65 | if (empty($p) || empty($q)) { |
| 66 | 66 | return []; |
| 67 | 67 | } |
| 68 | - $helper = static function (array $nums, int $target): bool { |
|
| 68 | + $helper = static function(array $nums, int $target): bool { |
|
| 69 | 69 | [$low, $high] = [0, count($nums) - 1]; |
| 70 | 70 | while ($low <= $high) { |
| 71 | 71 | $mid = $low + intdiv($high - $low, 2); |