1.0.1 • Published 1 year ago
@rayan147/algorithms-ts v1.0.1
TypeScript Algorithms and Data Structures
A collection of algorithms and data structures implemented in TypeScript.
Installation
npm install @rayan147/ts-algorithms
# or
pnpm add @rayan147/ts-algorithmsUsage
import { Stack } from '@rayanramirez/ts-algorithms';
const stack = new Stack<number>();
stack.push(1);
stack.push(2);
console.log(stack.pop()); // 2License
MIT