refactor: Apply rust suggested changes
This commit is contained in:
parent
067ef6141c
commit
8a92b884a1
5 changed files with 6 additions and 16 deletions
|
|
@ -1,18 +1,13 @@
|
|||
use std::{
|
||||
collections::HashMap,
|
||||
fmt::format,
|
||||
io::{self, Error, ErrorKind},
|
||||
};
|
||||
use std::collections::HashMap;
|
||||
|
||||
use crate::utils::parse::{Responses, Testcase, Testcases};
|
||||
use tasks01::{
|
||||
block2poly::block2poly,
|
||||
poly2block::{self, poly2block},
|
||||
poly2block::{poly2block},
|
||||
sea128::sea128,
|
||||
};
|
||||
|
||||
use anyhow::{anyhow, Result};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use serde_json::{json, Value};
|
||||
|
||||
mod tasks01;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue