diff --git a/Python/remove_whitespace.py b/Python/remove_whitespace.py new file mode 100644 index 0000000..481c58d --- /dev/null +++ b/Python/remove_whitespace.py @@ -0,0 +1,2 @@ +def remove_whitespace(s): + return ''.join(s.split())