Skip to content
Snippets Groups Projects
2.7 Exercises.py 71 B
Newer Older
# question 1

Michael Mutote's avatar
Michael Mutote committed

def rotateR(val):
    val[0],val[-1] = val[-1],val[0]