diff options
author | crupest <crupest@outlook.com> | 2019-09-25 14:19:57 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-09-25 14:19:57 +0800 |
commit | ffa5b301f0460f1c230145cbe00adb0fa34b9f4b (patch) | |
tree | 6e6b2ffc0ffa7dded5c3a7ac07becf1926c7e7b5 /works | |
parent | 055a85193f738ec1c9cf04873078e67b211e6942 (diff) | |
download | crupest-ffa5b301f0460f1c230145cbe00adb0fa34b9f4b.tar.gz crupest-ffa5b301f0460f1c230145cbe00adb0fa34b9f4b.tar.bz2 crupest-ffa5b301f0460f1c230145cbe00adb0fa34b9f4b.zip |
import(solutions): Remove unused print in p4.
Diffstat (limited to 'works')
-rw-r--r-- | works/solutions/src/find_median_sorted_arrays.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/works/solutions/src/find_median_sorted_arrays.rs b/works/solutions/src/find_median_sorted_arrays.rs index 2c09afb..bbc73f9 100644 --- a/works/solutions/src/find_median_sorted_arrays.rs +++ b/works/solutions/src/find_median_sorted_arrays.rs @@ -38,7 +38,6 @@ impl Solution { v.push(b[j]);
}
v.sort_unstable();
- println!("{:?}", v);
if (len_a + len_b) % 2 == 0 {
match v.len() {
|