UNPKG

@cromarmot/algo

Version:

Algorithms library with controllable time complexity.

6 lines (5 loc) 221 B
declare namespace CromarmotAlgoLib { type Complexity = "Best" | "Constant" | "LogN" | "N" | "NLogN" | "N2" | "N2LogN" | "N3" | "N4" | "NN" | "Random"; type Funcs = string; type Fn = (...arg0: any[]) => any; }