some other challenges

This commit is contained in:
Maxime Vorwerk
2024-06-05 16:22:50 +02:00
parent c9764c3f18
commit eec8ec4147
6 changed files with 66 additions and 0 deletions

8
nice_netcat/sol.py Executable file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/python
with open("nc_out", "r") as f:
lines = f.readlines()
for line in lines:
char = chr(int(line))
print(char, end='')