• + 0 comments

    def rotateLeft(d, arr): # Write your code here a=(arr[d:]+arr[:d]) return a