1
0
Fork 0

remove derive(Debug)

main
Andrew Coleman 2023-12-28 22:20:58 -05:00
parent 055946115a
commit 30bd722f3e
1 changed files with 0 additions and 1 deletions

View File

@ -3,7 +3,6 @@ use aoc_runner_derive::{aoc, aoc_generator};
type Board = Vec<Vec<char>>;
type Pair = (usize, usize);
#[derive(Debug)]
struct Map {
rows: Board,
cols: Board,