min requirements:
- node v12.21.0
- npm 7.13.0
- rustc 1.50.0
- cargo 1.50.0
# clone repo
git clone git@github.com:109149/dsa.git
cd dsa
js
# install npm dependencies to run tests against js solutions
npm install
npm test
# running tests for specific file
npm test <regex>
# example running tests against _1.rs
npm test _1
# watch mode
npm run test:watch
npm run test:watch <regex>
rust
# to run tests against rust solutions
cargo test
# or
cargo t
# running tests for specific file
cargo t <regex>
# example running tests against _1.rs
cargo t _1