Skip to content

Added validate sudoku board function #9881

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 19 commits into from
Oct 14, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
bug fix
  • Loading branch information
dbring committed Oct 5, 2023
commit bfe956b6a416998cfcb72275e5a1e0b69a4c122e
3 changes: 0 additions & 3 deletions graphs/deep_clone_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ def __init__(self, value: int = 0, neighbors: list | None = None) -> None:
self.value = value
self.neighbors = neighbors or []

def __repr__(self):
return f"Node({self.value}, {self.neighbors})"


def clone_graph(node: Node | None) -> Node | None:
"""
Expand Down