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
/
a501.py
blob: bbcc4db33c65b2231836b8a2feda503799180481 (
plain
)
1
2
3
4
5
def
is_Sum_Of_Powers_Of_Two
(
n
):
if
(
n
%
2
==
1
):
return
False
else
:
return
True