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
/
unparsable_programs
/
a199.py
blob: 6cf5bd166a05b00e07e8ae9104afe71195503bd7 (
plain
)
1
2
3
import
re
def
remove_all_spaces
(
text
):
return
(
re
.
sub
(
r
'\s+'
,
''
,
text
))