Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/benhunter/coding-challenges
Coding Challenges
https://github.com/benhunter/coding-challenges
advent-of-code exercism kotlin python rust
Last synced: 2 days 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 (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-01-23T04:23:40.000Z (18 days ago)
- Last Synced: 2025-01-23T04:25:40.528Z (18 days ago)
- Topics: advent-of-code, exercism, kotlin, python, rust
- Language: Rust
- Homepage: https://benhunter.github.io/coding-challenges/
- Size: 836 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Coding Challenges
## Advent of Code
- [2024](https://adventofcode.com/2024) in Rust.
- [2023](https://adventofcode.com/2023) in Rust.
- [2022](https://adventofcode.com/2022) in Kotlin.
- [2021](https://adventofcode.com/2021) in Python.
- [2020](https://adventofcode.com/2020) in Python.## 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"
}
```