From 87152d83f83a49752b6f6f026e031d293429fa7c Mon Sep 17 00:00:00 2001 From: Calamar Date: Thu, 23 Jul 2020 11:28:50 -0500 Subject: [PATCH] Challenge complete! --- src/main.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/main.py b/src/main.py index 3f1ef43..4f44d7f 100644 --- a/src/main.py +++ b/src/main.py @@ -1,9 +1,10 @@ # Resolve the problem!! - +import re def run(): - # Start coding here - + with open('encoded.txt', 'r', encoding='utf-8') as f: + raw_secret = f.read() + print('The secrect key is: ', "".join(re.findall(r'[a-z]',raw_secret))) if __name__ == '__main__': run()