From e6f44b11ab3e5665f5d9b5c56e8d4498d01a2a88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oscar=20Guzm=C3=A1n?= Date: Tue, 30 Jun 2020 18:03:34 -0500 Subject: [PATCH] Desafio completado: christianvanderhenst --- src/main.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/main.py b/src/main.py index 3f1ef43..2611de7 100644 --- a/src/main.py +++ b/src/main.py @@ -1,9 +1,11 @@ # Resolve the problem!! - +import re def run(): - # Start coding here - + with open('./encoded.txt', 'r', encoding = 'utf-8') as f: + code = f.read() + decode=''.join(re.findall('[a-z]', code)) + print(decode) if __name__ == '__main__': run()