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
/
a587.py
blob: 090067e8dfe984b6bbd853147316034db63f1065 (
plain
)
1
2
3
4
5
6
def count_Set_Bits(n): count = 0 while (n): count += n & 1 n >>= 1 return count