1.0.1 • Published 1 year ago

@rayan147/algorithms-ts v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

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-algorithms

Usage

import { Stack } from '@rayanramirez/ts-algorithms';

const stack = new Stack<number>();
stack.push(1);
stack.push(2);
console.log(stack.pop()); // 2

License

MIT

1.0.1

1 year ago

1.0.0

1 year ago