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