Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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/)