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
/
a814.py
blob: 2f895d0224f03b59c35b45e5f3491ca1b3c74a81 (
plain
)
1
2
3
import
re
def
remove_whitespaces
(
text1
):
return
(
re
.
sub
(
r
'\s+'
,
''
,
text1
))