updated README.md with references

This commit is contained in:
jellyfishsh 2025-04-12 12:52:45 -07:00
parent 526cd961a6
commit af35605a3e
3 changed files with 20 additions and 1 deletions

7
Cargo.lock generated Normal file
View File

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "sorting-algos"
version = "0.1.0"

View File

@ -1,3 +1,5 @@
# sorting-algos
Implementing sorting algorithms in Rust to learn the language.
Implementing sorting algorithms in Rust to learn the language.
Learning solely via (Rust By Example)[https://doc.rust-lang.org/rust-by-example/]

View File

@ -1,3 +1,13 @@
fn main() {
println!("Hello, world!");
//
}
//Takes in an array, and returns a sorted array
fn selection_sort() {
}
fn random_array(size : u32) ->