Advertisement
EXTREMEXPLOIT

Esto es precioso

Dec 30th, 2019
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.06 KB | None | 0 0
  1. def rotLeft(a, d):
  2.     return a[d % len(a):] + a[:d % len(a)]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement