Passed
Pull Request — master (#7)
by
unknown
01:54
created
7 Kyu/highest-and-lowest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,6 +33,6 @@
 block discarded – undo
33 33
 // Alternate solution #2
34 34
 
35 35
 function highAndLow($numbers) {
36
-  $a = explode(' ', $numbers);
37
-  return max($a) . " " . min($a);
36
+    $a = explode(' ', $numbers);
37
+    return max($a) . " " . min($a);
38 38
 }
Please login to merge, or discard this patch.