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
/
a198.py
blob: 1cfd2a812e6450bcdb4b40afb5c76d5147855fb8 (
plain
)
1
2
3
INT_BITS
=
32
def
left_Rotate
(
n
,
d
):
return
(
n
<<
d
)
|
(
n
>>
(
INT_BITS
-
d
))