[][src]Struct rs_sudoku::Sudoku

pub struct Sudoku(_);

Methods

impl Sudoku
[src]

pub fn new(positions: [CandidateSet; 81]) -> Self
[src]

pub fn num_solved(&self) -> usize
[src]

pub fn is_solved(&self) -> bool
[src]

pub fn oneline(&self) -> String
[src]

pub fn is_valid(&self) -> bool
[src]

Check to see if the puzzle is invalid. Where invalid means:

This puzzle doesn't have the same digit twice in a row, col, box. Every digit is either in the candidate set or solved in every row, col, box.

This doesn't 100% mean that the puzzle has a unique solution.

Trait Implementations

impl Solveable for Sudoku
[src]

impl DerefMut for Sudoku
[src]

impl Deref for Sudoku
[src]

type Target = [CandidateSet]

The resulting type after dereferencing.

Auto Trait Implementations

impl Send for Sudoku

impl Sync for Sudoku

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]