aoc-rs-2021/src/day_07/model.rs
Jan Christian Grünhage dbd5139991 implement day 7
2021-12-07 10:43:19 +01:00

5 lines
89 B
Rust

#[derive(Debug, PartialEq, Copy, Clone)]
pub struct CrabSub {
pub location: usize,
}