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.
- Host: GitHub
- URL: https://github.com/deamondev/scala-data-structures
- Owner: DeamonDev
- Created: 2021-09-16T16:21:33.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-09-21T12:04:54.000Z (over 4 years ago)
- Last Synced: 2025-01-16T08:39:51.435Z (about 1 year ago)
- Topics: algorithms, data-structures, scala, testing
- Language: Scala
- Homepage:
- Size: 516 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```