From b1d645bb228496be62bbfc772bfe3b4bd59bb7a3 Mon Sep 17 00:00:00 2001 From: "J. Alvarez" Date: Fri, 24 Jul 2020 16:20:45 -0500 Subject: [PATCH] Solved challenge --- src/main.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/main.py b/src/main.py index 3f1ef43..52de300 100644 --- a/src/main.py +++ b/src/main.py @@ -1,8 +1,14 @@ # Resolve the problem!! +import re + +FILE_NAME = 'encoded.txt' def run(): - # Start coding here + with open(FILE_NAME, encoding = 'utf-8') as input_file: + contents = input_file.read() + message = ''.join(re.findall(r'[a-z]', contents)) + print(message) if __name__ == '__main__':