summaryrefslogtreecommitdiff
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))