Skip to content

Instantly share code, notes, and snippets.

@bigkiandi
Last active May 13, 2017 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bigkiandi/2de50bc49debc1976e995604581151cc to your computer and use it in GitHub Desktop.
Save bigkiandi/2de50bc49debc1976e995604581151cc to your computer and use it in GitHub Desktop.
<?php
$permutasi = array('A','B','C','D');
foreach ($permutasi as $a){
foreach ($permutasi as $b) {
if($a == $b){ continue; }
echo $a.$b.", ";
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment