Passed
Push — master ( ae03b7...7e68e3 )
by Daniel
01:14
created
7 Kyu/growth-of-a-population.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     for ($counter; $startpeople < $endpeople; $counter++) {
35 35
         $startpeople = $startpeople * (1 + $percent / 100) + $aug ;    
36 36
     }
37
-      return $counter;
37
+        return $counter;
38 38
 }
39 39
 
40 40
 // Alternate solution with ternary:
Please login to merge, or discard this patch.
6 Kyu/find-the-odd-int.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     { 
14 14
           
15 15
         for ($j = 0; 
16
-             $j < count($arr); $j++) 
16
+                $j < count($arr); $j++) 
17 17
         { 
18 18
             if ($arr[$i] == $arr[$j]) { 
19 19
                 $count++;
Please login to merge, or discard this patch.