1
0
Fork 0

Formatting

This commit is contained in:
Vivianne 2022-12-10 17:45:11 -08:00
parent bffd0002c0
commit 05d95cb415
2 changed files with 1 additions and 2 deletions

View File

@ -63,7 +63,6 @@ impl FromStr for Outcome {
"Z" => Ok(Self::Win), "Z" => Ok(Self::Win),
_ => Err("Unknown outcome!"), _ => Err("Unknown outcome!"),
} }
} }
} }

View File

@ -1,7 +1,7 @@
#![feature(iterator_try_collect)] #![feature(iterator_try_collect)]
use std::{fs, collections::VecDeque};
use itertools::Itertools; use itertools::Itertools;
use std::{collections::VecDeque, fs};
const START_PACKET_SIZE: usize = 4; const START_PACKET_SIZE: usize = 4;
const START_MESSAGE_SIZE: usize = 14; const START_MESSAGE_SIZE: usize = 14;