Move the code over from private repository (#3)

This commit is contained in:
Kerem Yilmaz
2024-03-01 10:09:30 -08:00
committed by GitHub
parent 32dd6d92a5
commit 9eddb3d812
93 changed files with 16798 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
import re
def remove_whitespace(string: str) -> str:
return re.sub("[ \n\t]+", " ", string)