diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2025-11-28 14:55:40 +0100 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2025-11-28 15:33:42 +0100 |
| commit | 3e40017c5e856fbbc33bbdd53a9a8e1d2b02abd8 (patch) | |
| tree | 5a6d43ac62b48f5842fbac5c0373e4e975a2fe70 /2025/02 | |
| parent | af6dfd26da9f872ff9d1402c03237ba26df23007 (diff) | |
| download | aoc-3e40017c5e856fbbc33bbdd53a9a8e1d2b02abd8.tar.gz aoc-3e40017c5e856fbbc33bbdd53a9a8e1d2b02abd8.zip | |
Set up for 2025
Diffstat (limited to '2025/02')
| -rw-r--r-- | 2025/02/a.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/2025/02/a.py b/2025/02/a.py new file mode 100644 index 0000000..5fdb11b --- /dev/null +++ b/2025/02/a.py | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | import fileinput | ||
| 2 | |||
| 3 | with fileinput.input() as lines: | ||
| 4 | for line in lines: | ||
| 5 | ... | ||
| 6 | |||
