https://github.com/benhunter/coding-challenges
Coding Challenges
https://github.com/benhunter/coding-challenges
advent-of-code exercism kotlin python rust
Last synced: 3 months ago
JSON representation
Coding Challenges
- Host: GitHub
- URL: https://github.com/benhunter/coding-challenges
- Owner: benhunter
- License: mit
- Created: 2021-01-18T00:43:30.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-02-22T04:25:16.000Z (5 months ago)
- Last Synced: 2025-02-22T05:21:14.529Z (5 months ago)
- Topics: advent-of-code, exercism, kotlin, python, rust
- Language: Rust
- Homepage: https://benhunter.github.io/coding-challenges/
- Size: 876 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Solutions
## Advent of Code
[https://adventofcode.com/](https://adventofcode.com/)
- [2024](https://github.com/benhunter/coding-challenges/tree/main/AdventOfCode/2024) in Rust.
- [Day 13](https://github.com/benhunter/coding-challenges/blob/main/AdventOfCode/2024/day-13/src/lib.rs)
- [2023](https://github.com/benhunter/coding-challenges/tree/main/AdventOfCode/2023) in Rust.
- [2022](https://github.com/benhunter/coding-challenges/tree/main/AdventOfCode/2022) in Kotlin.
- [2021](https://github.com/benhunter/coding-challenges/tree/main/AdventOfCode/2021) in Python.
- [2020](https://github.com/benhunter/coding-challenges/tree/main/AdventOfCode/2020) in Python.## LeetCode
```
leetup pick X -l rust
cargo +nightly -Zscript best-time-to-buy-and-sell-stock.rs
```## Exercism
Java - https://exercism.io/my/tracks/java
- to fix the build error with Exercism v2 - change the following in `build.gradle`:
```java
dependencies {
testImplementation "org.junit.vintage:junit-vintage-engine:5.7.2"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.7.2"
}
```