SleepSort in Rust A sorting method where each number waits for an amount of time equal to its value, then prints itself. How to Run Clone the project https://github.com/svl10/sleepsort.git cd sleepsort Run using cargo Sample cargo run 8 13 2 6 3 Output 2 3 6 8 13