Skip to content

Commit b3992dc

Browse files
committed
Deleted extra files
1 parent b35ad04 commit b3992dc

File tree

2,470 files changed

+2
-488920
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,470 files changed

+2
-488920
lines changed

main.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ def main():
2929
if cards[i, j][0] != '*':
3030
cards_temp = deepcopy(cards)
3131
numbers_removed_from_dom = remove_numbers_from_dom(cards_temp, numbers_removed_from_dom, i, j, cards[i, j][0])
32-
3332
if solve_sudoku(cards, colors, colors_removed_from_dom, numbers_removed_from_dom):
3433
print(cards)
3534
else:
@@ -100,6 +99,8 @@ def find_unassigned_block(cards, location, colors_removed_from_dom):
10099
location[1] = int(key_max[1])
101100
return True
102101

102+
103+
103104
def used_in_row(cards, row, num):
104105
for i in range(n):
105106
if cards[row, i][0] == str(num):
@@ -290,8 +291,6 @@ def solve_sudoku(cards, colors, colors_removed_from_dom, numbers_removed_from_do
290291
return True
291292
row = l[0]
292293
col = l[1]
293-
#print(row, col)
294-
#print(numbers_removed_from_dom)
295294
last_num = cards[row, col][0]
296295
last_color = cards[row, col][1]
297296
for num in range(n, 0, -1):
@@ -301,7 +300,6 @@ def solve_sudoku(cards, colors, colors_removed_from_dom, numbers_removed_from_do
301300
if num in numbers_removed_from_dom[loc]:
302301
mark = True
303302
if mark == False:
304-
#print(numbers_removed_from_dom)
305303
updated_removed_number_dom = deepcopy(numbers_removed_from_dom)
306304
for color in colors:
307305
updated_removed_color_dom = deepcopy(colors_removed_from_dom)
@@ -327,7 +325,6 @@ def solve_sudoku(cards, colors, colors_removed_from_dom, numbers_removed_from_do
327325
if updated_removed_color_dom is None:
328326
continue
329327

330-
#print(updated_removed_color_dom)
331328
if new_color is None and new_num is None:
332329
continue
333330
elif new_color is None and new_num is not None:

t.py

Lines changed: 0 additions & 76 deletions
This file was deleted.
Binary file not shown.
Binary file not shown.
Binary file not shown.

venv/Lib/site-packages/_distutils_hack/__init__.py

Lines changed: 0 additions & 123 deletions
This file was deleted.
Binary file not shown.
Binary file not shown.

venv/Lib/site-packages/_distutils_hack/override.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)