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

https://github.com/deamondev/scala-data-structures

Implementation of most common data structures / algorithms in Scala. Based on "Rock the JVM - Scala & Functional Programming practice course". All solutions are mine.
https://github.com/deamondev/scala-data-structures

algorithms data-structures scala testing

Last synced: about 1 year ago
JSON representation

Implementation of most common data structures / algorithms in Scala. Based on "Rock the JVM - Scala & Functional Programming practice course". All solutions are mine.

Awesome Lists containing this project

README

          

# Data structures and algorithms implemented in Scala
Implementation of most common data structures / algorithms in Scala. Based on ["Rock the JVM - Scala & Functional Programming practice course](https://rockthejvm.com/p/scala-functional-programming-interview-practice)". All solutions are mine.

# Project Strucutre

```bash
├── src
│   ├── main
│   │   └── scala
│   │   └── com.deamondev
│   │   └── lists
│   │   └── ExampleProblems.scala
│   └── test
│   └── scala
│   └── com.deamondev
│   └── lists
│   └── ExampleProblemsSpec.scala
```