about summary refs log tree commit diff
path: root/daily/285easy/1enc.py
diff options
context:
space:
mode:
Diffstat (limited to 'daily/285easy/1enc.py')
-rwxr-xr-xdaily/285easy/1enc.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/daily/285easy/1enc.py b/daily/285easy/1enc.py
new file mode 100755
index 0000000..8ce1a95
--- /dev/null
+++ b/daily/285easy/1enc.py
@@ -0,0 +1,10 @@
+#!/usr/bin/env python3
+
+from binascii import b2a_uu
+
+with open('1enc.inp') as f:
+    s = f.read()
+
+with open('1enc.out', 'w') as f:
+    for i in range(0, n, 45):
+        f.write(b2a_uu(bytes(s[i : i+45], 'utf-8')).decode())