{% extends "global/Page.html" %}
{% block title %}
Task 5 of 12
Sudoku{% endblock %}
{% block content %}
For this task, you will be presented with a Sudoku puzzle .
If you are not familiar with how to solve a Sudoku puzzle, please read the below instructions carefully:
How to solve a Sudoku puzzle:
Sudoku is played on a grid of 9 x 9 spaces.
Within the rows and columns are 9 “squares” (made up of 3 x 3 spaces).
Each row, column and square (9 spaces each) needs to be filled out with the numbers 1-9,
without repeating any numbers within the row, column or square.
Detailed demonstrations
Rule #1: Each row must contain the numbers 1-9 exactly once each

Rule #2: Each column must contain the numbers 1-9 exactly once each

Rule #3: Each 3×3 box must contain the numbers 1-9 exactly once each


