Arrays: Left Rotation

  • + 0 comments

    I've the same solution. gj

    main = () => {
        let [integersCount, rotations] = readLine().split(' ').map(Number)
        let array = readLine().split(' ').map(Number)
        
        while(rotations--) array.push(array.shift())
       
        console.log(array.join(' '))
    }