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
/
a291.py
blob: 9bc037f3002e33a802a936a6859214394aea0704 (
plain
)
1
2
3
import
re
def
remove_spaces
(
text
):
return
(
re
.
sub
(
' +'
,
' '
,
text
))