lionelsamrat10 / LeetCode-Solutions

Contains the solutions of all the problems, I am solving on Leetcode.
https://github.com/lionelsamrat10/LeetCode-Solutions
MIT License
2 stars 1 forks source link

36. Valid Sudoku #39

Closed guruc-134 closed 2 years ago

guruc-134 commented 2 years ago

I want to provide the solution to this problem. link to the problem

please assign me this issue.

Determine if a 9 x 9 Sudoku board is valid. Only the filled cells need to be validated according to the following rules:

Each row must contain the digits 1-9 without repetition. Each column must contain the digits 1-9 without repetition. Each of the nine 3 x 3 sub-boxes of the grid must contain the digits 1-9 without repetition. Note:

A Sudoku board (partially filled) could be valid but is not necessarily solvable. Only the filled cells need to be validated according to the mentioned rules.

guruc-134 commented 2 years ago

please assign this issue to me /assign