Initial commit

This commit is contained in:
Geoffrey Frogeye 2024-12-25 12:58:02 +01:00
commit 97a4330bc0
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
110 changed files with 7006 additions and 0 deletions

8
2024/19/colors.py Normal file
View file

@ -0,0 +1,8 @@
#!/usr/bin/env python3
import sys
input_file = sys.argv[1]
with open(input_file) as fd:
print(fd.read().replace("w", "").replace("u", "🟦").replace("b", "").replace("r", "🟥").replace("g", "🟩"))