Compare commits

..

1 Commits

Author SHA1 Message Date
3711652475 day 5 part 1 2020-12-05 09:45:08 -08:00

View File

@ -38,7 +38,7 @@ impl SeatId {
} }
fn row(&self) -> u8 { fn row(&self) -> u8 {
(self.0 >> 4) as u8 (self.0 >> 3) as u8
} }
fn column(&self) -> u8 { fn column(&self) -> u8 {