summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2019-09-25 14:19:57 +0800
committercrupest <crupest@outlook.com>2019-09-25 14:19:57 +0800
commit4bfc8c9ab95f1bffc135ade9477e14b801d21cfd (patch)
tree9786194d7a48f67f341999f92f24d2758592f18a /src
parentec85ee6d302fa210d738ab4bd2994f5b02cee3a3 (diff)
downloadsolutions-4bfc8c9ab95f1bffc135ade9477e14b801d21cfd.tar.gz
solutions-4bfc8c9ab95f1bffc135ade9477e14b801d21cfd.tar.bz2
solutions-4bfc8c9ab95f1bffc135ade9477e14b801d21cfd.zip
Remove unused print in p4.
Diffstat (limited to 'src')
-rw-r--r--src/find_median_sorted_arrays.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/find_median_sorted_arrays.rs b/src/find_median_sorted_arrays.rs
index 2c09afb..bbc73f9 100644
--- a/src/find_median_sorted_arrays.rs
+++ b/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() {