Skip to content

Instantly share code, notes, and snippets.

@elchroy
Created August 1, 2019 08:47
Show Gist options
  • Save elchroy/18ccd0bc2c3062ccb756336adfc369e2 to your computer and use it in GitHub Desktop.
Save elchroy/18ccd0bc2c3062ccb756336adfc369e2 to your computer and use it in GitHub Desktop.
<?php
$arr = [1, 2, 3, 4, 5];
function rotLeft($a, $d) {
$res = [];
$count = count($a);
array_walk($a, function ($e, $i) use (&$a, $d, $count, &$res) {
$res[$i] = $a[($i+$d)%$count];
});
return implode(' ', $res);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment