Skip to content

Instantly share code, notes, and snippets.

@IftekherSunny
Created September 24, 2018 07:41
Show Gist options
  • Save IftekherSunny/922ef2d398ee6ba193c1011cd809653f to your computer and use it in GitHub Desktop.
Save IftekherSunny/922ef2d398ee6ba193c1011cd809653f to your computer and use it in GitHub Desktop.
<?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