Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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"
}
```