in the middle of day 14
This commit is contained in:
parent
f91c30e11d
commit
e0935d147d
1 changed files with 14 additions and 1 deletions
15
src/main.rs
15
src/main.rs
|
@ -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![];
|
||||
|
|
Loading…
Reference in a new issue