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.
  • Practice
  • Certification
  • Compete
  • Career Fair
  • Hiring developers?
  1. Practice
  2. Data Structures
  3. Arrays
  4. Left Rotation
  5. Discussions

Left Rotation

Problem
Submissions
Leaderboard
Discussions
Editorial

    You are viewing a single comment's thread. Return to all comments →

  • freddie71010 4 years ago+ 0 comments

    Looks great, my python solution printed an unzipped list.

    # separates n and d values into two variables
    n, d = [int(x) for x in input().split()]
    # creates list of integers
    lst = [int(x) for x in input().split()]
    
    # From inner most function to outermost=============
    # creates a list using lst[d:] and combines it with lst[0:d]
    # unzips list (* = unzips)
    # prints list
    print(*(lst[d:]+lst[0:d]))
    
    1|
    ParentPermalink
  • Contest Calendar
  • Blog
  • Scoring
  • Environment
  • FAQ
  • About Us
  • Support
  • Careers
  • Terms Of Service
  • Privacy Policy
  • Request a Feature