Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shawakash/advent
Some solution for advent of code
https://github.com/shawakash/advent
advent-of-code
Last synced: 1 day ago
JSON representation
Some solution for advent of code
- Host: GitHub
- URL: https://github.com/shawakash/advent
- Owner: shawakash
- License: mit
- Created: 2024-11-10T20:24:33.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-21T00:37:54.000Z (about 2 months ago)
- Last Synced: 2025-01-08T10:03:46.772Z (8 days ago)
- Topics: advent-of-code
- Language: Rust
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 🎄 Advent of Code Solutions
This repository contains my solutions to [Advent of Code](https://adventofcode.com/) challenges implemented in multiple programming languages.
## 📚 Structure
```
advent-of-code/
├── 2023/
│ ├── rust/
│ │ └── ...
│ └── go/
│ └── ...
└── 2022/
└── ...
```## 🚀 Languages
Solutions are implemented in:
- Rust 🦀
- Go 🔵## 💻 Running Solutions
### Rust
```bash
cd 2023/rust/
cargo run
```### Go
```bash
cd 2023/go/
go run main.go
```## 📝 Solutions Overview
### 2023
| Day | Problem | Rust | Go |
|-----|---------|------|-----|
| 01 | [Trebuchet?!](https://adventofcode.com/2023/day/1) | ✅ | X |
| 02 | [Cube Conundrum](https://adventofcode.com/2023/day/2) | ❌ | ❌ |## 🌟 Progress
- 2023: 1/25 completed
- 2022: 0/25 completed## 🤝 Contributing
Feel free to open issues or submit pull requests if you spot any bugs or have suggestions for improvements.
## 📜 License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
## 👤 Author
- GitHub: [@shawakash](https://github.com/shawakash)
## ⭐️ Show your support
Give a ⭐️ if this project helped you!
## 📝 Notes
- Each solution includes both parts of the daily challenge
- Input files are not included in the repository as per Advent of Code's [request](https://adventofcode.com/about#faq_copying)
- Solutions focus on readability and maintainability over performance optimization## 🔗 Useful Links
- [Advent of Code](https://adventofcode.com/)
- [Advent of Code Subreddit](https://www.reddit.com/r/adventofcode/)