We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
My Js solution
function rotateLeft(d, arr) {
// Write your code here
d=d%arr.length;
let arr_to_rotate=arr.splice(0,d);
arr= arr.concat(arr_to_rotate);
return arr;
}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Left Rotation
You are viewing a single comment's thread. Return to all comments →
My Js solution function rotateLeft(d, arr) { // Write your code here d=d%arr.length; let arr_to_rotate=arr.splice(0,d); arr= arr.concat(arr_to_rotate); return arr; }