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.
- Host: GitHub
- URL: https://github.com/amarok24/sort_learn_ts
- Owner: Amarok24
- License: unlicense
- Created: 2020-10-21T13:11:40.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2020-10-21T14:19:34.000Z (over 4 years ago)
- Last Synced: 2025-02-16T07:41:20.895Z (3 months ago)
- Topics: bubblesort, typescript, typescript-learning
- Language: TypeScript
- Homepage:
- Size: 16.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```