refactor: Apply rust suggested changes

This commit is contained in:
0xalivecow 2024-10-23 10:24:13 +02:00
parent 067ef6141c
commit 8a92b884a1
No known key found for this signature in database
5 changed files with 6 additions and 16 deletions

View file

@ -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;