-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Quick sort in Rust #3055
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Quick sort in Rust #3055
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Squash your commits.
Quick_Sort/Quick_Sort.rs
Outdated
fn main() { | ||
println!("Enter the numbers to be sorted (separated by space) : "); | ||
let mut array: Vec<u32> = read_values :: <u32>().unwrap(); | ||
quicksort(&mut array, 0, array.len()-1); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Space around -
Squashing not done properly. |
I am getting errors, but I am trying |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is okay. Since there is not much time, I am merging it as the code is correct.
sorry I did not see your comment |
It is okay, since you have done it. I had not merged it yet. |
i have squashed commits |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good.
Fixes #2131
Checklist:
Make sure these boxes are checked before your pull request (PR) is ready to be reviewed and merged. Thanks!
Changes proposed in this pull request:
Languages Used:
Files Added:
Thanks!