An open API service indexing awesome lists of open source software.

https://github.com/amarok24/sort_learn_ts

TypeScript learning project. BubbleSort using different types of data.
https://github.com/amarok24/sort_learn_ts

bubblesort typescript typescript-learning

Last synced: about 1 month ago
JSON representation

TypeScript learning project. BubbleSort using different types of data.

Awesome Lists containing this project

README

        

# sort_learn_TS
TypeScript learning project. BubbleSort using different types of data. Code version 1.

Run with DENO
```
$ deno run build/index.js
hello from index.ts
[ -5, 0, 3, 10 ]
aabXy
-10
-3
4
500
```

Run with NodeJS
```
$ node build/index.js
hello from index.ts
[ -5, 0, 3, 10 ]
aabXy
-10
-3
4
500
```