Test Failed
Push — master ( d4a23a...567b28 )
by Jinyun
11:27
created
src/leetcode/IntersectionOfTwoArrays.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.