jgsimard / sudoku_solver_rust

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Yet Another Sudoku Solver (in rust)

This is a sudoku solver. I did two implementations. A basic one using integers to represents possible numbers for each cell and a bitfield that use one integer to represent all the posibilities of one cell, where each bit represent a different number. The bitfield version is ~20 X faster.

About


Languages

Language:Rust 100.0%