Skip to content

Commit 0db9ce9

Browse files
committed
format
1 parent fb6173d commit 0db9ce9

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

examples/data_structures/deq_agg.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
use proconio::input;
44
use programming_team_code_rust::data_structures::deq_agg::DeqAgg;
5-
use rand::{thread_rng, Rng};
5+
use rand::{Rng, thread_rng};
66
use std::collections::VecDeque;
77

88
const MOD: u64 = 998_244_353;

examples/data_structures/range_container_handmade.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// verification-helper: PROBLEM https://onlinejudge.u-aizu.ac.jp/courses/lesson/2/ITP1/all/ITP1_1_A
22

33
use programming_team_code_rust::data_structures::range_container::RangeContainer;
4-
use rand::{thread_rng, Rng};
4+
use rand::{Rng, thread_rng};
55
use std::collections::BTreeMap;
66

77
fn main() {

examples/helpers/lis_handmade.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// verification-helper: PROBLEM https://onlinejudge.u-aizu.ac.jp/courses/lesson/2/ITP1/all/ITP1_1_A
22

33
use programming_team_code_rust::helpers::lis::Lis;
4-
use rand::{thread_rng, Rng};
4+
use rand::{Rng, thread_rng};
55

66
fn lis_quadratic(a: &[i32]) -> usize {
77
let n = a.len();

src/graphs/count_paths_per_length.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//! # Count the number of paths of each length in a tree
2-
use crate::graphs::cent_decomp::{cent_decomp, CentDecompDfs};
2+
use crate::graphs::cent_decomp::{CentDecompDfs, cent_decomp};
33
use crate::numbers::fft::fft_multiply;
44

55
fn conv(a: &[u64], b: &[u64]) -> Vec<u64> {

0 commit comments

Comments
 (0)