@lucadani7/algonodejs-for-beginners
Version:
Just a simple Node.js package with some basic algorithms perfect for people just starting out. It's got easy-to-understand TypeScript versions of stuff like sorting, searching, math with numbers, and messing with strings.
40 lines (26 loc) • 728 B
Markdown
# AlgoNodejsForBeginners
Just a simple Node.js package with some basic algorithms perfect for people just starting out. It's got easy-to-understand TypeScript versions of stuff like sorting, searching, math with numbers, and messing with strings.
## 📦 Installation
```bash
npm install @lucadani7/algonodejs-for-beginners
```
## 🛠️ Usage
```ts
import { GaussianSolver } from "@lucadani7/algonodejs-for-beginners";
const matrix = [
[2, 3, -1, 5],
[4, 1, 2, 6],
[-2, 5, 2, -3]
];
const result = GaussianSolver.analyzeMatrix(matrix);
console.log(result.solution);
```
## 🛰️ License
Apache-2.0
## 🧑🚀 Author
Luca Daniel Ionescu
[GitHub Profile](https://github.com/lucadani7)