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
/
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