.md modified

This commit is contained in:
Revone 2023-08-17 00:53:27 +08:00
parent 07231cd4c4
commit e486687430

View file

@ -28,6 +28,12 @@ yarn add data-structure-typed
```bash
npm install data-structure-typed
```
## Live Examples
[//]: # ([Live Examples](https://data-structure-typed-examples.vercel.app))
<a href="https://data-structure-typed-examples.vercel.app" target="_blank">Live Examples</a>
### Binary Search Tree (BST) snippet
@ -130,12 +136,6 @@ npm install data-structure-typed
expect(bfsNodes[2].id).toBe(16);
```
## Live Examples
[//]: # ([Live Examples]&#40;https://data-structure-typed-examples.vercel.app&#41;)
<a href="https://data-structure-typed-examples.vercel.app" target="_blank">Live Examples</a>
### Directed Graph simple snippet
```typescript