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.
functionrotateLeft(d,arr){// Write your code hereletrotateArr=newArray(arr.length).fill(null);//The start index is from where elements are aligned with arrleti=(arr.length-(d%arr.length));letj=0;while(i<=arr.length-1){rotateArr[i]=arr[j];j++;i++;}i=0;// the end point is where the alignment beginswhile(i<(arr.length-(d%arr.length))){rotateArr[i]=arr[j];j++;i++;}returnrotateArr;}
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 →
A JS solution: