Compare commits

..

2 Commits

Author SHA1 Message Date
abadbf2b71 rm day 16 2023-12-09 13:50:15 +01:00
436e7c6cef change lang 2023-12-09 13:50:09 +01:00
2 changed files with 17 additions and 15 deletions

View File

@ -1,12 +1,14 @@
# [Day 1](https://adventofcode.com/2022/day/1)
:gift:
Today's language: **awk** + **GNU-coretils**
Today's language: **Awk + Bash**
Lines of code: **2**
Execution time: **0,0011 s**
<!-- one-liners -->
- Task 1: We use awk to find the maximum while we iterate through the file
- Task 2: We use awk again for summing the calories, then sort them and take the top 3 which we again sum up with awk
```shell

View File

@ -11,26 +11,27 @@ The directories for each day contain my input file, my code and a README that sh
These are the days with to most interesting code so far:
1. **day 13**: *HolyC* on a TempleOS virtual machine
2. **day 4**: *x86-64 assembly* with the help of ChatGPT
3. **day 6**: *html+javascript* [check it out here](https://quintern.xyz/advent22/day6.html)
3. **day 6**: *html+javascript* <!-- [check it out here](https://quintern.xyz/advent22/day6.html) -->
4. **day 7**: *awk+bash*
Also, check out the repositories of my friends who do stuff in go, Visual Basic, php and many other languages!
- [Daniel](https://git.quintern.xyz/TheShinyMelon/AOC_2022)
- [Jonas](https://github.com/JonasBordewick/advent_of_code_2022)
## Language - Day
- **Awk**: day 1, 7
- **Assembly, x86-64**: day 4
- **Bash**: day 1, 7
- **C**: day 3, 4, 15
- **C++**: day 2, 8, 12, 14
- **HolyC:** day 13
- **Java**: day 10
- **Javascript**: day 6
- **php**: day 9
- **Python**: day 5, 11
- **VIM-Script**: day 4
<!-- ## Language - Day -->
<!-- - **Awk**: day 1, 7 -->
<!-- - **Assembly, x86-64**: day 4 -->
<!-- - **Bash**: day 1, 7 -->
<!-- - **C**: day 3, 4, 15 -->
<!-- - **C++**: day 2, 8, 12, 14 -->
<!-- - **HolyC:** day 13 -->
<!-- - **Java**: day 10 -->
<!-- - **Javascript**: day 6 -->
<!-- - **php**: day 9 -->
<!-- - **Python**: day 5, 11 -->
<!-- - **VIM-Script**: day 4 -->
## Overview
<!-- table begin -->
| Day | Language | Lines of code | Execuction time | Comment |
|:---: |:---: | ---: | ---: |--- |
@ -49,7 +50,6 @@ Also, check out the repositories of my friends who do stuff in go, Visual Basic,
| [13](13) | HolyC | 228 | < 0,500 s | yes, coded in HolyC on TempleOS |
| [14](14) | C++ | 113 | 0,085 s | |
| [15](15) | C | 98 | 0,801 s | |
| [16](16) | | | | |
Lines of code are without blank lines and comments