From e0935d147df81ebbfa1abe2229845faf12e1c856 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andy=20Teijelo=20P=C3=A9rez?= Date: Sun, 31 Mar 2024 08:26:18 -0600 Subject: [PATCH] in the middle of day 14 --- src/main.rs | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 101f24a..ad70309 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,7 +1,20 @@ use anyhow::Result; use std::io::stdin; -type Grid = Vec>; +type Row = Vec; +type Grid = Vec; + +fn roll_left(row: &mut Row) { + +} + +fn roll_column_up(grid: &mut Grid, col: usize) { + +} + +fn roll_up(grid: &mut Grid) { + +} fn main() -> Result<()> { let mut grid: Grid = vec![];