diff --git a/src/main.py b/src/main.py index 3f1ef43..c63fe3f 100644 --- a/src/main.py +++ b/src/main.py @@ -1,8 +1,13 @@ # Resolve the problem!! - +import re def run(): - # Start coding here + with open('src/encoded.txt', 'r', encoding='utf-8') as f: + pattern = re.compile(r'[a-z]') + for line in f: + match = pattern.findall(line) + + print (''.join(match)) if __name__ == '__main__':