Comment out day 7 code -- still does not work

This commit is contained in:
Eryn Wells 2022-12-13 08:21:37 -08:00
parent 106ec700ef
commit 5335b160cd

View file

@ -2,6 +2,7 @@ use std::collections::HashMap;
const INPUT: &'static str = include_str!("../../Data/day7-input.txt");
/*
#[derive(Debug)]
struct DirectoryStack<'a> {
stack: Vec<&'a Directory>,
@ -91,8 +92,10 @@ impl Directory {
+ self.directories.values().map(|d| d.size()).sum::<u32>()
}
}
*/
pub fn main(_filename: &str) -> std::io::Result<()> {
/*
let line_reader = INPUT.lines();
let root = Directory::new("/");
@ -141,6 +144,7 @@ pub fn main(_filename: &str) -> std::io::Result<()> {
}
}
*/
Ok(())
}