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