Skip to content

Latest commit

 

History

History
52 lines (43 loc) · 2.32 KB

README.md

File metadata and controls

52 lines (43 loc) · 2.32 KB

Data Structures and Algorithms

Use different programming languages ​​to implement data structures and algorithms as exercises.

Language Test
Julia Run julia tests
Python Run python tests
Rust Run rust tests

Setup

Julia

  1. Install Julia programming language.
  2. Run julia --project=. in julia directory to activate project.
  3. Run ] instantiate to install dependencies and current project.

Python

  1. Install Python programming language.
  2. Install Poetry package manager.
  3. Run poetry install in python directory to install dependencies and current project.

Rust

  1. Install Rust programming language.
  2. Install Nextest test runner for Rust.

Test on Local Machine

Run tests with ./runtests.sh LANGUAGE.... For example:

./runtests.sh jl
./runtests.sh jl py
./runtests.sh all

References

Julia

Python

Rust