Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 563 Bytes

readme.md

File metadata and controls

26 lines (18 loc) · 563 Bytes

Data Structures & Algorithms

Examples of common problem solving patterns, search and sort algorithms (simple and complex) & recursion

To run scripts locally make sure you have what you need to run typscript via node.js

# Locally in your project.
npm install -D typescript
npm install -D ts-node

# Or globally with TypeScript.
npm install -g typescript
npm install -g ts-node

# Depending on configuration, you may also need these
npm install -D tslib @types/node

Usage

# Execute a script as `node` + `tsc`.
ts-node scriptname.ts