Broad Network


CyclicRotation at app.codility.com/programmers in JavaScript Explained: Rotate an array to the right by a given number of steps.

Task score : 100% - Correctness : 100% ; Performance : not assessed
Lesson 2 at app.codility.com/programmers
Task, solution and its explanation are given below.

Category of Article : Technology | Computers and Software | Algorithm

By: Chrysanthus Date Published: 2 May 2025

Task

An array A consisting of N integers is given. Rotation of the array means that each element is shifted right by one index, and the last element of the array is moved to the first place. For example, the rotation of array A = [3, 8, 9, 7, 6] is [6, 3, 8, 9, 7] (elements are shifted right by one index and 6 is moved to the first place).

The goal is to rotate array A K times; that is, each element of A will be shifted to the right K times.

Write a function:

    function solution(A, K);

that, given an array A consisting of N integers and an integer K, returns the array A rotated K times.

For example, given

    A = [3, 8, 9, 7, 6]
    K = 3

the function should return [9, 7, 6, 3, 8]. Three rotations were made:

    [3, 8, 9, 7, 6] -> [6, 3, 8, 9, 7]
    [6, 3, 8, 9, 7] -> [7, 6, 3, 8, 9]
    [7, 6, 3, 8, 9] -> [9, 7, 6, 3, 8]

For another example, given

    A = [0, 0, 0]
    K = 1

the function should return [0, 0, 0]

Given

    A = [1, 2, 3, 4]
    K = 4

the function should return [1, 2, 3, 4]

Assume that:

        N and K are integers within the range [0..100];
        each element of array A is an integer within the range [−1,000..1,000].

In your solution, focus on correctness. The performance of your solution will not be the focus of the assessment.

Brute Force Approach

The brute force approach is to shift each element in the array one place to the right, and the last element to the first place, for each pass, through the array. The brute force approach is accepted for this particular test, CyclicRotation; and it is used below. An array is used in the following program. The code, which the reader should read through, is:

<script type='text/javascript'>
    "use strict"; 

    function solution(A, K) {
        let N = A.length;

        for(let i=0; i<K; i++) {
            if (N > 0) {
                let temp = A[N-1];
                //shift right by 1 index
                for (let j=N-1; j>0; j--) {    //end at j == 1
                    A[j] = A[j-1];
                }
                A[0] = temp;  //put last value in 1st place
            }
        }

        return A;
    }

    const B = [3, 8, 9, 7, 6];
    let K=3;
    const V = solution(B, K);
    for (let i=0; i<V.length; ++i)
        document.write(V[i] + ' '); 
    document.write('<br>');

</script>

At app.codility.com/programmers, the score for correctness is 100%, for this function. Note that the calling function is not typed at app.codility.com/programmers (not sent to the server). At app.codility.com/programmers there is a score out of 100% for correctness, and also a score out of 100% for performance (reduced time complexity). Some middle value is taken as the total task score, still out of 100%. For this particular task, no mark is given for performance.

The reader should register at app.codility.com/programmers to be testing his/her own code.

That is it, for the explanation of this task.

The rest of the 17 lessons, with explanation of lessons, explanation of tasks, and explanation of solutions, can be found at (click): Explanations in JavaScript for the 17 Algorithm Lessons at https://app.codility.com/programmers with Problems and Solutions





Related Links

More Related Links

Cousins

BACK NEXT

Comments