Skip to content

Commit

Permalink
modified: src/bin/sudoku400.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
shnarazk committed Jan 15, 2021
1 parent 2ff43e5 commit 97e250f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/sudoku400.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ pub fn main() {

fn parse(tick: usize) -> Vec<(Pos, usize)> {
let mut buf = String::new();
std::io::stdin().read_to_string(&mut buf);
std::io::stdin().read_to_string(&mut buf).expect("fail to read");
let mut vec: Vec<(Pos, usize)> = Vec::new();
let mut i = 0;
for (ii, l) in buf.lines().enumerate() {
Expand Down

0 comments on commit 97e250f

Please sign in to comment.