Implement merge sort in Python

I know, I want to do this in Rust, but prototyping in Python comes much
more natural to me. I have to work on my Rust skills!
This commit is contained in:
2020-11-13 14:48:47 -05:00
parent e9f114bc48
commit 79a7a05b21
4 changed files with 68 additions and 0 deletions

9
Cargo.toml Normal file
View File

@@ -0,0 +1,9 @@
[package]
name = "algos"
version = "0.1.0"
authors = ["Felix Martin <mail@felixm.de>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]