AdventOfCode2023/01/README.md

20 lines
308 B
Markdown
Raw Normal View History

2023-12-08 13:52:28 +01:00
# [Day 1](https://adventofcode.com/2023/day/1)
2023-12-01 23:52:09 +01:00
:gift:
Today's language: **Python**
2023-12-08 13:55:05 +01:00
2023-12-09 11:53:29 +01:00
Lines of code: **3**
2023-12-08 13:52:28 +01:00
Execution time: **0,021 s**
2023-12-01 23:52:09 +01:00
Both tasks are solved in one hell of a oneliner each:
2023-12-08 13:52:28 +01:00
2023-12-01 23:52:09 +01:00
- Task 1: 153 characters / line
- Task 2: 363 characters / line
2023-12-06 11:30:48 +01:00
2023-12-01 23:52:09 +01:00
```shell
2023-12-08 13:52:28 +01:00
python3 day01.py
2023-12-01 23:52:09 +01:00
```
2023-12-08 13:52:28 +01:00
<!-- one-liners -->