https://github.com/Honkware/sort.mojo
sorting algorithms written in Mojo
https://github.com/Honkware/sort.mojo
Last synced: 6 months ago
JSON representation
sorting algorithms written in Mojo
- Host: GitHub
- URL: https://github.com/Honkware/sort.mojo
- Owner: Honkware
- Created: 2024-02-29T01:11:09.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-01T18:33:10.000Z (over 1 year ago)
- Last Synced: 2024-09-24T16:22:44.998Z (10 months ago)
- Size: 3.91 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-mojo-max-mlir - Honkware/sort.mojo
- awesome-mojo-max-mlir - Honkware/sort.mojo
README
# sort.mojo
sorting algorithms written in MojoExample usage:
```
mojo test.mojo // Default: uses bubble sort
mojo test.mojo merge // Uses merge sort
mojo test.mojo selection // Uses selection sort
```