Created
September 24, 2018 07:41
-
-
Save IftekherSunny/922ef2d398ee6ba193c1011cd809653f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$unsort = [1,5,2,22,12,39,3]; | |
for($i = count($unsort) - 1; $i > 0; $i--) { | |
for($j = count($unsort) - 1; $j > 0; $j--) { | |
if($unsort[$j-1] > $unsort[$j]) { | |
$temp = $unsort[$j-1]; | |
$unsort[$j-1] = $unsort[$j]; | |
$unsort[$j] = $temp; | |
} | |
} | |
} | |
var_dump($unsort); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment