in the middle of day 14

main
Andy Teijelo Pérez 2024-03-31 08:26:18 -06:00
parent f91c30e11d
commit e0935d147d
1 changed files with 14 additions and 1 deletions

View File

@ -1,7 +1,20 @@
use anyhow::Result;
use std::io::stdin;
type Grid = Vec<Vec<char>>;
type Row = Vec<char>;
type Grid = Vec<Row>;
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![];