Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/donovanglover/advent-of-code
My solutions to Advent of Code problems in Rust.
https://github.com/donovanglover/advent-of-code
advent-of-code adventofcode aoc rust
Last synced: about 2 months ago
JSON representation
My solutions to Advent of Code problems in Rust.
- Host: GitHub
- URL: https://github.com/donovanglover/advent-of-code
- Owner: donovanglover
- License: mit
- Created: 2023-12-05T00:13:59.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-08T05:51:11.000Z (about 1 year ago)
- Last Synced: 2023-12-09T01:35:51.551Z (about 1 year ago)
- Topics: advent-of-code, adventofcode, aoc, rust
- Language: Rust
- Homepage:
- Size: 158 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 2023
My solutions to Advent of Code 2023 in Rust.
## Why Rust?
Rust has a vibrant community with first-class developer experience, making it a solid language for serious work.
Some notable features of Rust include:
- A [large](https://stackoverflow.com/questions/tagged/rust?tab=Votes) [amount](https://crates.io/) of people that know the Rust programming language
- A [non-trivial](https://github.com/ferrocene/ferrocene) [amount](https://github.com/mullvad/mullvadvpn-app) of businesses that use Rust in production
- Excellent vim support with [rust.vim](https://github.com/rust-lang/rust.vim) and [rust-analyzer](https://github.com/rust-lang/rust-analyzer)
- [Incremental compilation](https://rustc-dev-guide.rust-lang.org/queries/incremental-compilation.html) support, a feature [lacking](https://forum.crystal-lang.org/t/incremental-compilation-exploration/5224) in other languages
- [One](https://doc.rust-lang.org/std/) universal library instead of [many](https://deno.land/[email protected]) [competing](https://bun.sh/docs/runtime/bun-apis) [APIs](https://nodejs.org/dist/latest-v21.x/docs/api/)## Why Advent of Code
I like how the focus is solving problems instead of selling "Problems as a Service".