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
/
a462.py
blob: 6cdb173bea28ea592910ae4bf1316a2a9df3993b (
plain
)
1
2
def
decimal_to_binary
(
n
):
return
bin
(
n
)
.
replace
(
"0b"
,
""
)