Skip to content

Instantly share code, notes, and snippets.

@dcortesnet
Last active February 14, 2023 12:38
Show Gist options
  • Select an option

  • Save dcortesnet/d66067e8d4320a053ef7cc4d95f609f5 to your computer and use it in GitHub Desktop.

Select an option

Save dcortesnet/d66067e8d4320a053ef7cc4d95f609f5 to your computer and use it in GitHub Desktop.
Javascript resolución de pr rotación a la izquierda array
function rotateLeft(d, arr) {
while (d > 0) {
const leftElement = arr.shift();
arr.push(leftElement);
d--;
}
return arr;
}
console.log(rotateLeft(2, [1, 2, 3, 4, 5])); // [3, 4, 5, 1, 2]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment