index
:
clp.git
main
A small Python compiler with optimizer written in Java
Ubuntu
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
progs
/
a691.py
blob: 03d58df0e8c4476a465169295878490a6bda6923 (
plain
)
1
2
3
def rotate_left(list1,m,n): result = list1[m:]+list1[:n] return result