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.
let x = k % a.length;
let result = [];
for(let i = 0; i < queries.length; i++) {
// the formal is (queries[i] + a.length - x) % a.length to get the right index after rotation
result.push(a[(queries[i] + a.length - x) % a.length]);
}
return result;
}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Circular Array Rotation
You are viewing a single comment's thread. Return to all comments →
function circularArrayRotation(a, k, queries) {
}