New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@pencroff/ts-algorithms

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pencroff/ts-algorithms

Typescript algorithms and Data Structures

latest
Source
npmnpm
Version
0.0.13
Version published
Maintainers
1
Created
Source

ts-algorithms

Typescript algorithms and Data Structures

Build Status codecov

Get started

npm i @pencroff/ts-algorithms --save

The package doesn't provide any common exports. All required imports should be per item. For example:

import { genericComparator } from '@pencroff/ts-algorithms/dist/primitive/comparator'

const res = genericComparator('A', 'B'); // returns -1, check primitives for details

Algorithms

Theory

Big O notation is used in computer science to describe the performance or complexity of an algorithm.

Big O chart source: www.bigocheatsheet.com

Big O can be used for measuring time complexity or space / memory complexity.

References:

Keywords

typescript

FAQs

Package last updated on 05 Mar 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts