Skip to content

Commit c270cb6

Browse files
authored
Add files via upload
1 parent afb6a82 commit c270cb6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Zig/sudoku.zig

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ pub fn main() !void {
1515
grid.set(args[1]);
1616
}
1717
else {
18-
grid.set("800000000003600000070090200050007000000045700000100030001000068008500010090000400");
18+
grid.set("800000000003600000070090200050007000000045700000100030001000068008500010090000400");
1919
}
20-
std.debug.print("\n===================\n Input Grid\n===================\n", .{});
21-
grid.print();
22-
var timer = try std.time.Timer.start();
23-
grid.solve();
20+
std.debug.print("\n===================\n Input Grid\n===================\n", .{});
21+
grid.print();
22+
var timer = try std.time.Timer.start();
23+
grid.solve();
2424
const time_0 : u64 = timer.read();
25-
std.debug.print("\n===================\n Solution\n===================\n", .{});
25+
std.debug.print("\n===================\n Solution\n===================\n", .{});
2626
grid.print();
2727
@setFloatMode(.Optimized);
2828
const ftime = @as(f64,@floatFromInt(time_0))/1000000.0;

0 commit comments

Comments
 (0)