index
:
clp
main
A small Python compiler with optimizer written in Java
dcariotti
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
progs
/
a43.py
blob: 0205358cd2e162513b782d505e09b2872cfc1d68 (
plain
)
1
2
def
reverse_Array_Upto_K
(
input
,
k
):
return
(
input
[
k
-
1
::
-
1
]
+
input
[
k
:])