How To Rotate An Array To Left In Javascript | letsbug

    In this article we are going to rotate an array to left. So basically we are going to shift the elements of the array to the left of the array after some index. And we are going to use javascript for this we you can do this is any language. We some different logic and implementations.

    Let me explain you what we are going to do here. Suppose we are given an array with these elements 

    arr = [1, 2, 3, 4, 5]

    And we have been given to rotate this array by 2 elements that means that you have to shift all the that are after the index 2 to the left of the array. So you arr will look like this

    arr = [3, 4, 5, 1, 2]

    So let's start coding this in javascript

    Array Left Rotation

code:

    "use strict";
    function rotLeft(a, d) {
        let temp = [];
        for (let i = 0; i < a.length; i++) {
            temp.push(a[(i + d) % a.length]);
        }
        a = temp;
        return a;
    }
    let arr = [1, 2, 3, 4, 5];
    console.log(`
        Input: ${arr}
        Output: ${rotLeft(arr, 2)}
    `);

output:

$ node arrayLeftRotation.js

    [ 3, 4, 5, 1, 2 ]

Comments

Categories

Big Data Analytics Binary Search Binary Search Tree Binary To Decimal binary tree Breadth First Search Bubble sort C Programming c++ Chemical Reaction and equation class 10 class 10th Class 9 Climate Complex Numbers computer network counting sort CSS Cyber Offenses Cyber Security Cyberstalking Data Science Data Structures Decimal To Binary Development diamond pattern Digital Marketing dust of snow Economics Economics Lesson 4 Email Validation English fire and ice Food Security in India Footprints Without feet Forest And Wildlife Resources game Geography Geography lesson 6 glassmorphism Glossary Graph HackerRank Solution hindi HTML image previewer India-Size And Location Insertion Sort Internet Network Status Interview Questions Introduction to cyber crime and cyber security IT javascript tricks json to CSV converter lesson 2 lesson 1 lesson 2 Lesson 3 Lesson 6 lesson 7 Life lines of National Economy life processes Linear Search Linked List lowest common ancestor Machine Learning MCQs median in array Merge sort min and max of two numbers Moment Money and Credit My Childhood Natural Vegetation and Wildlife NCERT Network connectivity devices Network Models Network Security No Men Are foreign Node.js operator overloading P5.js PHP Physical features of India Population Prime Numbers python Quick sort R language Rain on the roof Regular Expression Resources and development reversing array saakhi science Searching Algorithm Selection sort Social Media Marketing social science Software Engineering Software Testing Sorting Algorithm Stacks staircase pattern System Concepts Text Recognition The last Leaf time converter Time Passed From A Date Todo List App Tree Trending Technologies Understanding Economic Development username and password video player Visualization water resources Wired And Wireless LAN साखी
Show more

Popular Posts

Big Data MCQs(multiple choice questions) with answers - letsbug

Digital Marketing MCQ(Multiple Choice Questions) with Answers | part 1 | letsbug

Software Engineering MCQs questions with answers - letsbug