From 1b832c5c5ba9997d59470bc37c1d594affebc875 Mon Sep 17 00:00:00 2001 From: Anuj Kaushik Date: Fri, 2 Jul 2021 00:45:04 +0530 Subject: [PATCH] fixes --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5e0a3a4..a924c7d 100644 --- a/README.md +++ b/README.md @@ -8,21 +8,21 @@ and exactly once in each column. _Example:_ -![](sudoku-screenshots/latin.png) +![](sudoku-screenshots/latin.png)
a Latin square of order 3 A **Sudoku Latin square** is a Latin square of order 9 on the symbol set {1,..., 9} that -is partitioned into 3 _×_ 3 squares, and each square contains all symbols. +is partitioned into 3 _×_ 3 squares, and each square contains all symbols.
![](sudoku-screenshots/1.png) -This can also be represented as +This can also be represented as
![](sudoku-screenshots/2.png) -This can be further represented as a list of variables: +This can be further represented as a list of variables:
![](sudoku-screenshots/3.png) -And we represent the whole sudoku latin square as a list of lists. +And we represent the whole sudoku latin square as a list of lists.
![](sudoku-screenshots/4.png) So, in total, we have a list of rows.