-
Notifications
You must be signed in to change notification settings - Fork 0
/
LearnSudoku.py
executable file
·2538 lines (2487 loc) · 99 KB
/
LearnSudoku.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env python3
import os #To clear screen using os.system("clear")
print("Hey !")
print("Up for something?")
print("How about learning something new?")
print("Well how about Sudoku")
choice = input("(Y/N) : ")
if ((choice=="N") or (choice=="n") or (choice=="No") or (choice=="NO") or (choice=="no")) :
exit()
print("Brave Choice!")
temp_variable = os.system('clear')
sudoku="""
+++++++++++++++++++++++++++++++++++++++
| 6 | | [] 3 | 2 | [] 4 | | 7 |
+---+---+---++---+---+---++---+---+---+
| | 3 | [] | | 4 [] | 8 | |
+---+---+---++---+---+---++---+---+---+
| 4 | | [] | | 6 [] | | |
+++++++++++++++++++++++++++++++++++++++
| | 2 | 7 [] | 3 | [] | | 9 |
+---+---+---++---+---+---++---+---+---+
| 3 | | [] 8 | | 7 [] | | 1 |
+---+---+---++---+---+---++---+---+---+
| 8 | | [] | 1 | [] 5 | 7 | |
+++++++++++++++++++++++++++++++++++++++
| | | [] 6 | | [] | | 8 |
+---+---+---++---+---+---++---+---+---+
| | 8 | [] 2 | | [] | 1 | |
+---+---+---++---+---+---++---+---+---+
| 9 | | 1 [] | 8 | 3 [] | | 5 |
+++++++++++++++++++++++++++++++++++++++
"""
print(sudoku)
print("""
So that's how a typical Sudoku looks like (Thats an easy level)
How can I say that ?
Well, We will soon find out""")
input("Press any key to continue : ")
temp_variable = os.system("clear")
print("""
The rules for sudoku are:
1) No number repeats in any row , any column , or any box !
2) Each Box should have all numbers from 1 to 9
3) Each line should have all number from 1 to 9
That's It!
Rest is brain game!
So lets see what these rules looks like when we apply it!""")
input("Press any key to continue : ")
temp_variable = os.system("clear")
print("""
The 4th ,5th and 6th rows in this example seem to be eligible for
filling up :
(You will hone this art with time , it isn't that difficult
just see where you can start filling , without going against the
rules )
+++++++++++++++++++++++++++++++++++++++
| | 2 | 7 [] | 3 | [] | | 9 |
+---+---+---++---+---+---++---+---+---+
| 3 | | [] 8 | | 7 [] | | 1 |
+---+---+---++---+---+---++---+---+---+
| 8 | | [] | 1 | [] 5 | 7 | |
+++++++++++++++++++++++++++++++++++++++
Seen, anything yet?
Dont worry if you didn't !
A good idea is to start by 1 and then go on like 1,2,3,4... and so on """)
input("Press any key to continue: ")
temp_variable = os.system("clear")
print("""
+++++++++++++++++++++++++++++++++++++++
|(*)| 2 | 7 [] | 3 | [] | | 9 |
+---+---+---++---+---+---++---+---+---+
| 3 | | [] 8 | | 7 [] | | 1 |
+---+---+---++---+---+---++---+---+---+
| 8 | | [] | 1 | [] 5 | 7 | |
+++++++++++++++++++++++++++++++++++++++
See the postition marked with (*) , this place is eligible for a number to
be filled . """)
number = input("Can you guess which one ? (Enter the number): ")
if number==1 :
print("Congratulations! You are right ! ")
else :
print("Oops! You are wrong ,the answer was 1, but don't worry ")
print(" So , lets see how the answer is one . ")
input("Press any key to continue : ")
temp_variable = os.system("clear")
print("""
+++++++++++++++++++++++++++++++++++++++
|(1)| 2 | 7 [] | 3 | [] | | 9 |
+---+---+---++---+---+---++---+---+---+
| 3 | | [] 8 | | 7 [] | | 1 |
+---+---+---++---+---+---++---+---+---+
| 8 | | [] | 1 | [] 5 | 7 | |
+++++++++++++++++++++++++++++++++++++++
(I will be entering each new number found in a () paranthesis )
if you focus the first BOX (the 3x3 square) and wish to find
a number that fits in this box , lets say 1 , then we see where
else does 1 appear near it , in any other box.
Here , 1 does appear in the second and the third box
and that too in 2nd and 3rd rows.
""")
input("Press any key to continue: ")
temp_variable = os.system("clear")
print("""
+++++++++++++++++++++++++++++++++++++++
| | 2 | 7 [] | 3 | [] | | 9 |
+---+---+---++---+---+---++---+---+---+
| 3 | | [] 8 | | 7 [] | | 1 |
+---+---+---++---+---+---++---+---+---+
| 8 | | [] | 1 | [] 5 | 7 | |
+++++++++++++++++++++++++++++++++++++++
So let's mark the boxes that go invalid for the position of 1 in the 1st box(3x3) with 'x' """)
input("Press any key to continue: ")
temp_variable = os.system("clear")
print("""
+++++++++++++++++++++++++++++++++++++++
| | 2 | 7 [] | 3 | [] | | 9 |
+---+---+---++---+---+---++---+---+---+
| 3 | x | x [] 8 | | 7 [] | | 1 |
+---+---+---++---+---+---++---+---+---+
| 8 | x | x [] | 1 | [] 5 | 7 | |
+++++++++++++++++++++++++++++++++++++++
The 1st and 2nd rows go invalid since in these rows 1 already occured .
Now as is Visible We got only 1 box left as valid for the number 1 in
box 1.
And since all numbers should appear in a box once
we hence know that 1 has to be in first row first column
(The other two boxes are already invalid since they already have 1 once
in them)
So , we can be sure of position of 1 in the 1st box , and that's because
of the 2nd and 3rd boxes only ! )
Hence , that position goes to 1 !
Now lets see how the whole sudoku looks like :""")
input("Press any key to continue : ")
temp_variable = os.system("clear")
sudoku="""
+++++++++++++++++++++++++++++++++++++++
| 6 | | [] 3 | 2 | [] 4 | | 7 |
+---+---+---++---+---+---++---+---+---+
| | 3 | [] | | 4 [] | 8 | |
+---+---+---++---+---+---++---+---+---+
| 4 | | [] | | 6 [] | | |
+++++++++++++++++++++++++++++++++++++++
|(1)| 2 | 7 [] | 3 | [] | | 9 |
+---+---+---++---+---+---++---+---+---+
| 3 | | [] 8 | | 7 [] | | 1 |
+---+---+---++---+---+---++---+---+---+
| 8 | | [] | 1 | [] 5 | 7 | |
+++++++++++++++++++++++++++++++++++++++
| | | [] 6 | | [] | | 8 |
+---+---+---++---+---+---++---+---+---+
| | 8 | [] 2 | | [] | 1 | |
+---+---+---++---+---+---++---+---+---+
| 9 | | 1 [] | 8 | 3 [] | | 5 |
+++++++++++++++++++++++++++++++++++++++
"""
print(sudoku)
print("So , lets see which another one is eligible for filling ")
print("Now , we'll consider whole sudoku , and slowly and gradually we'll fill the complete grid ")
input("Press any key to continue: ")
temp_variable = os.system("clear")
print("""
It might be a bit difficult in the start , but slowly you WILL learn
how to find a number.
What I do , is to , go from 1-9 in that order determining which one
to be filled next
like in the sudoku we'll see in the next page , We will first see
if we can find more '1's and if not then we'll proceed to 2 , then
3 and so on...
""")
input("Press any key to continue")
temp_variable = os.system("clear")
print("""
Now , try and find out if more '1's can be filled up.
Analyse Box wise, it might be helpful.
It wont be too lengthy as you have to check validity of '1' number
in each box .
Discard it immediately , if it already has one.
else see for '1's in the all the boxes near the one you chose.
Let's call the box you chose as HAPPY
if HAPPY doesn't have '1' in it's own 3x3 box , then ,
see for boxes near it that .
see for boxes whose rows or columns run into HAPPY ,
ONLY ROWS AND COLUMNS
no diagnals
If any row from nearby boxes run into HAPPY , with a 1 in them
then discard the 1x1 boxes that come in that row .
Then try and zero in to one box left as a possibility.
If you see more 1x1 boxes as a possibility then leave that box for now.
Those might prove little difficult if you are a beginner.
Play with them after you've cleared the basics!
Good luck with the grid on the next screen! """)
input("Press any key to continue: ")
temp_variable = os.system("clear")
print(sudoku)
print("Once you find out ... ")
input("Press any key to continue: ")
while True :
choice = input("Did you find it ? (y/n) ")
if ( choice=='y' or choice=='Y' ) :
print("Congratulations! ")
break
else :
print("Don't worry, try again! \n If you're fed up or don't want to")
print("try again , press y ")
sudoku="""
+++++++++++++++++++++++++++++++++++++++
| 6 | | [] 3 | 2 | [] 4 | | 7 |
+---+---+---++---+---+---++---+---+---+
| | 3 | [] | | 4 [] | 8 | |
+---+---+---++---+---+---++---+---+---+
| 4 | | [] | | 6 [] | | |
+++++++++++++++++++++++++++++++++++++++
| 1 | 2 | 7 [] | 3 | [] | | 9 |
+---+---+---++---+---+---++---+---+---+
| 3 | | [] 8 | | 7 [] | | 1 |
+---+---+---++---+---+---++---+---+---+
| 8 | | [] | 1 | [] 5 | 7 | |
+++++++++++++++++++++++++++++++++++++++
| | | [] 6 | |(*)[] | | 8 |
+---+---+---++---+---+---++---+---+---+
| | 8 | [] 2 | | [] | 1 | |
+---+---+---++---+---+---++---+---+---+
| 9 | | 1 [] | 8 | 3 [] | | 5 |
+++++++++++++++++++++++++++++++++++++++
"""
input("Press any key to continue: ")
temp_variable = os.system("clear")
print("So, the answer was 7th row 6th column (*) ")
print(sudoku)
print("This one was bit tougher than the previous one as it involved seeing the sudoku as a whole ")
print("So, lets narrow down how we concluded this position ")
sudoku="""
+++++++++++++++++++++++++++++++++++++++
| 6 | @ | x [] 3 | 2 | [] 4 | | 7 |
+---+---+---++---+---+---++---+---+---+
| x | 3 | x [] | | 4 [] | 8 | |
+---+---+---++---+---+---++---+---+---+
| 4 | @ | x [] | | 6 [] | | |
+++++++++++++++++++++++++++++++++++++++
| 1 | 2 | 7 [] | 3 | [] | | 9 |
+---+---+---++---+---+---++---+---+---+
| 3 | | [] 8 | | 7 [] | | 1 |
+---+---+---++---+---+---++---+---+---+
| 8 | | [] | 1 | [] 5 | 7 | |
+++++++++++++++++++++++++++++++++++++++
| | | [] 6 | |(*)[] | | 8 |
+---+---+---++---+---+---++---+---+---+
| | 8 | [] 2 | | [] | 1 | |
+---+---+---++---+---+---++---+---+---+
| 9 | | 1 [] | 8 | 3 [] | | 5 |
+++++++++++++++++++++++++++++++++++++++
"""
print("""
Now , the 1st 3x3 box is not having a one already, so it should be a
viable candidate. But look , there are more than one possibility for 1
(The ones' marked with '@')
""")
print(sudoku)
print("(Also notice the 'x' marks the positions not valid for '1' since it has already appeared in the same row)")
print("Same goes for the next 2 boxes of 3x3")
input("Press any key to continue: ")
temp_variable = os.system("clear")
sudoku="""
+++++++++++++++++++++++++++++++++++++++
| 6 | | [] 3 | 2 | [] 4 | | 7 |
+---+---+---++---+---+---++---+---+---+
| | 3 | [] | | 4 [] | 8 | |
+---+---+---++---+---+---++---+---+---+
| 4 | | [] | | 6 [] | | |
+++++++++++++++++++++++++++++++++++++++
--> | 1 | 2 | 7 [] | 3 | [] | | 9 |
+---+---+---++---+---+---++---+---+---+
| 3 | | [] 8 | | 7 [] | | 1 | <--
+---+---+---++---+---+---++---+---+---+
| 8 | | []-->| 1 |<--[] 5 | 7 | |
+++++++++++++++++++++++++++++++++++++++
| | | [] 6 | |(*)[] | | 8 |
+---+---+---++---+---+---++---+---+---+
| | 8 | [] 2 | | [] | 1 | |
+---+---+---++---+---+---++---+---+---+
| 9 | | 1 [] | 8 | 3 [] | | 5 |
+++++++++++++++++++++++++++++++++++++++
"""
print(sudoku)
print("""
Now , as the arrow shows , '1' are already present in the 2nd set of 3x3 boxes
so no '1's again , since the rule says :
"No number should repear in a row , column or a box"
""")
input("Press any key to continue: ")
temp_variable = os.system("clear")
sudoku="""
+++++++++++++++++++++++++++++++++++++++
| 6 | | [] 3 | 2 | [] 4 | | 7 |
+---+---+---++---+---+---++---+---+---+
| | 3 | [] | | 4 [] | 8 | |
+---+---+---++---+---+---++---+---+---+
| 4 | | [] | | 6 [] | | |
+++++++++++++++++++++++++++++++++++++++
| 1 | 2 | 7 [] | 3 | [] | | 9 |
+---+---+---++---+---+---++---+---+---+
| 3 | | [] 8 | | 7 [] | | 1 |
+---+---+---++---+---+---++---+---+---+
| 8 | | [] | 1 | [] 5 | 7 | |
+++++++++++++++++++++++++++++++++++++++
| | | [] 6 | |(*)[] | | 8 |
+---+---+---++---+---+---++---+---+---+
| | 8 | [] 2 | | []-->| 1 |<--|
+---+---+---++---+---+---++---+---+---+
| 9 |-->| 1 [] | 8 | 3 [] | | 5 |
+++++++++++++++++++++++++++++++++++++++
"""
print(sudoku)
print("""
Now , for the 3rd set ,again the arrow shows the places where '1's are not possible
But look carefully , the middle box in the 3rd set , is perfect !
""")
input("Press any key to continue")
temp_variable = os.system("clear")
sudoku="""
+++++++++++++++++++++++++++++++++++++++
| 6 | | [] 3 | 2 | [] 4 | | 7 |
+---+---+---++---+---+---++---+---+---+
| | 3 | [] | | 4 [] | 8 | |
+---+---+---++---+---+---++---+---+---+
| 4 | | [] | | 6 [] | | |
+++++++++++++++++++++++++++++++++++++++
| 1 | 2 | 7 [] | 3 | [] | | 9 |
+---+---+---++---+---+---++---+---+---+
| 3 | | [] 8 | | 7 [] | | 1 |
+---+---+---++---+---+---++---+---+---+
| 8 | | [] | 1 | [] 5 | 7 | |
+++++++++++++++++++++++++++++++++++++++
| | | [] 6 | x | [] | | 8 |
+---+---+---++---+---+---++---+---+---+
| | 8 | [] 2 | x | x [] | 1 | |
+---+---+---++---+---+---++---+---+---+
| 9 | | 1 [] x | 8 | 3 [] | | 5 |
+++++++++++++++++++++++++++++++++++++++
"""
print(sudoku)
print("""
It , might be visible now, that there is only one box left!
And , that is because the places marked with 'x' already had 1 in
either their row or their columns .
So, the Only box left must have the 1 !
Also, since each 3x3 must have all numbers from 1 to 9
We can be more sure that the place belongs to none other than
'1' ! So here goes our second find .""")
input("Press any key to continue: ")
temp_variable = os.system("clear")
print("Answer: ")
sudoku="""
+++++++++++++++++++++++++++++++++++++++
| 6 | | [] 3 | 2 | [] 4 | | 7 |
+---+---+---++---+---+---++---+---+---+
| | 3 | [] | | 4 [] | 8 | |
+---+---+---++---+---+---++---+---+---+
| 4 | | [] | | 6 [] | | |
+++++++++++++++++++++++++++++++++++++++
| 1 | 2 | 7 [] | 3 | [] | | 9 |
+---+---+---++---+---+---++---+---+---+
| 3 | | [] 8 | | 7 [] | | 1 |
+---+---+---++---+---+---++---+---+---+
| 8 | | [] | 1 | [] 5 | 7 | |
+++++++++++++++++++++++++++++++++++++++
| | | [] 6 | | 1 [] | | 8 |
+---+---+---++---+---+---++---+---+---+
| | 8 | [] 2 | | [] | 1 | |
+---+---+---++---+---+---++---+---+---+
| 9 | | 1 [] | 8 | 3 [] | | 5 |
+++++++++++++++++++++++++++++++++++++++
"""
print(sudoku)
input("Press any key to continue: ")
temp_variable = os.system("clear")
print("""
Now , we must proceed to 2 , as their are no obvious places where '1'
seems to fit.
Do remember , that which ever box you choose to fill a certain number
keep in mind not to go over it again until you are satisfied that no other
boxes fits the desired number.
And , do not forget to check all the boxes !
If you are confused about how to proceed so as to not miss anything,
then you can try what I do.
try all the 3x3 boxes in the order you read .
That is , 1st set left to right ,
then 2nd set left to right,
and then , 3rd one left to right.
If you wish to follow this manner , you can
1) continue to play and fill the complete grid.
2) solve this on a paper and then check the answer
3) quit
""")
answer = """
+++++++++++++++++++++++++++++++++++++++
| 6 | 1 | 9 [] 3 | 2 | 8 [] 4 | 5 | 7 |
+---+---+---++---+---+---++---+---+---+
| 5 | 3 | 2 [] 1 | 7 | 4 [](9)| 8 | 6 |
+---+---+---++---+---+---++---+---+---+
| 4 | 7 | 8 [] 5 | 9 | 6 [] 1 | 3 | 2 |
+++++++++++++++++++++++++++++++++++++++
| 1 | 2 | 7 [] 4 | 3 | 5 [] 8 | 6 | 9 |
+---+---+---++---+---+---++---+---+---+
| 3 | 9 | 5 [] 8 | 6 | 7 [] 2 | 4 | 1 |
+---+---+---++---+---+---++---+---+---+
| 8 | 6 | 4 [] 9 | 1 | 2 [] 5 | 7 | 3 |
+++++++++++++++++++++++++++++++++++++++
| 2 | 5 | 3 [] 6 | 4 | 1 [] 7 | 9 | 8 |
+---+---+---++---+---+---++---+---+---+
| 7 | 8 | 6 [] 2 | 5 | 9 [] 3 | 1 | 4 |
+---+---+---++---+---+---++---+---+---+
| 9 | 4 | 1 [] 7 | 8 | 3 [] 6 | 2 | 5 |
+++++++++++++++++++++++++++++++++++++++
"""
while True :
try :
choice = int(input("Enter your choice: "))
except ValueError:
print('Please enter correct choice')
continue
if choice==2 :
print("Answer: ")
print(answer)
input("Press any key to continue: ")
temp_variable = os.system("clear")
exit()
elif choice==3 :
exit()
elif choice!=1 :
print("Please Enter correct input .")
if choice == 1 :
break
sudoku="""
+++++++++++++++++++++++++++++++++++++++
| 6 | | [] 3 | 2 | [] 4 | | 7 |
+---+---+---++---+---+---++---+---+---+
| | 3 | [] | | 4 [] | 8 | |
+---+---+---++---+---+---++---+---+---+
| 4 | | [] | | 6 [] | | |
+++++++++++++++++++++++++++++++++++++++
| 1 | 2 | 7 [] | 3 | [] | | 9 |
+---+---+---++---+---+---++---+---+---+
| 3 | | [] 8 | | 7 [] | | 1 |
+---+---+---++---+---+---++---+---+---+
| 8 | | [] | 1 | [] 5 | 7 | |
+++++++++++++++++++++++++++++++++++++++
| | | [] 6 | | 1 [] | | 8 |
+---+---+---++---+---+---++---+---+---+
| | 8 | [] 2 | | [] | 1 | |
+---+---+---++---+---+---++---+---+---+
| 9 | | 1 [] | 8 | 3 [] | | 5 |
+++++++++++++++++++++++++++++++++++++++
"""
print("""
From now on enter row number , column number as in example shown , I'll show an
example by solving for the first '2'
The row and column should be entered as shown below , just press enter for this time:
""")
print(sudoku)
ask_place="Enter the row and column in r,c format or 'none' if no possible occurance :"
input(ask_place+"6,6")
print("Correct! Filling it up.")
sudoku="""
+++++++++++++++++++++++++++++++++++++++
| 6 | | [] 3 | 2 | [] 4 | | 7 |
+---+---+---++---+---+---++---+---+---+
| | 3 | [] | | 4 [] | 8 | |
+---+---+---++---+---+---++---+---+---+
| 4 | | [] | | 6 [] | | |
+++++++++++++++++++++++++++++++++++++++
| 1 | 2 | 7 [] | 3 | [] | | 9 |
+---+---+---++---+---+---++---+---+---+
| 3 | | [] 8 | | 7 [] | | 1 |
+---+---+---++---+---+---++---+---+---+
| 8 | | [] | 1 |(2)[] 5 | 7 | |
+++++++++++++++++++++++++++++++++++++++
| | | [] 6 | | 1 [] | | 8 |
+---+---+---++---+---+---++---+---+---+
| | 8 | [] 2 | | [] | 1 | |
+---+---+---++---+---+---++---+---+---+
| 9 | | 1 [] | 8 | 3 [] | | 5 |
+++++++++++++++++++++++++++++++++++++++
"""
print(sudoku)
while True:
try:
choice = int(input("Enter the 2 if you found another '2', or press n to jump to next number if no more 2 present or press e to exit ") )
except ValueError :
print("Please Enter correct choice ")
continue
if choice==2:
print("Oops! No more visible 2 ,as either more than one possibilities present or the number already present in the row or column or box, lets jump to next number ")
break
elif choice=="n":
print("Correct! , No more 2 visible. Jumping to next number: 3")
break
elif choice=="e":
exit()
input("Press any key to continue: ")
temp_variable = os.system("clear")
print(sudoku)
print("Now we search for 3")
place=input(ask_place)
if place=="6,9" :
print("Correct! Filling up the 3")
else :
print("Oops! This is possibly wrong, wanna try again? ")
place=input(ask_place)
if place=="6,9" :
print("Yups This one is right!")
else :
print("Nopes, lets see now what was the answer")
input("Press any key to continue: ")
temp_variable = os.system("clear")
sudoku="""
+++++++++++++++++++++++++++++++++++++++
| 6 | | [] 3 | 2 | [] 4 | | 7 |
+---+---+---++---+---+---++---+---+---+
| | 3 | [] | | 4 [] | 8 | |
+---+---+---++---+---+---++---+---+---+
| 4 | | [] | | 6 [] | | |
+++++++++++++++++++++++++++++++++++++++
| 1 | 2 | 7 [] | 3 | [] | | 9 |
+---+---+---++---+---+---++---+---+---+
| 3 | | [] 8 | | 7 [] | | 1 |
+---+---+---++---+---+---++---+---+---+
| 8 | | [] | 1 | 2 [] 5 | 7 |(3)|
+++++++++++++++++++++++++++++++++++++++
| | | [] 6 | | 1 [] | | 8 |
+---+---+---++---+---+---++---+---+---+
| | 8 | [] 2 | | [] | 1 | |
+---+---+---++---+---+---++---+---+---+
| 9 | | 1 [] | 8 | 3 [] | | 5 |
+++++++++++++++++++++++++++++++++++++++
"""
print(sudoku)
print("Got it ? Pretty easy one , only one box left if you see the third box in the second set . The 3 from the left two boxes cancel out ")
print("the 4th and 5th rows and hence we're left with only one place to fill!")
while True:
try:
choice = int(input("Enter the 3 if you found another '3', or press n to jump to next number if no more 3 present or press e to exit ") )
except ValueError :
print('Please enter correct choice')
continue
if choice==3:
print("Oops! No more visible 3 , as either more than one possibilities present or the number already present in the row or column or box, lets jump to next number ")
break
elif choice=="n":
print("Correct! , No more 3 visible. Jumping to next number: 4")
break
elif choice=="e":
exit()
input("Press any key to continue: ")
temp_variable = os.system("clear")
print(sudoku)
print("Now we search for 4")
place = input(ask_place)
if place == "none" :
print("Correct! Proceeding to 5")
else :
print("Oops! This is possibly wrong, wanna try again? ")
place = input(ask_place)
if place=="none" :
print("Yups This one is right!")
else :
print("Nopes, This time there is no visible 4")
input("Press any key to continue: ")
temp_variable = os.system("clear")
sudoku="""
+++++++++++++++++++++++++++++++++++++++
| 6 | | [] 3 | 2 | [] 4 | | 7 |
+---+---+---++---+---+---++---+---+---+
| | 3 | [] | | 4 [] | 8 | |
+---+---+---++---+---+---++---+---+---+
| 4 | | [] | | 6 [] | | |
+++++++++++++++++++++++++++++++++++++++
| 1 | 2 | 7 [] | 3 | [] | | 9 |
+---+---+---++---+---+---++---+---+---+
| 3 | | [] 8 | | 7 [] | | 1 |
+---+---+---++---+---+---++---+---+---+
| 8 | | [] | 1 | 2 [] 5 | 7 | 3 |
+++++++++++++++++++++++++++++++++++++++
| | | [] 6 | | 1 [] | | 8 |
+---+---+---++---+---+---++---+---+---+
| | 8 | [] 2 | | [] | 1 | |
+---+---+---++---+---+---++---+---+---+
| 9 | | 1 [] | 8 | 3 [] | | 5 |
+++++++++++++++++++++++++++++++++++++++
"""
print(sudoku)
print("Now we search for 5")
place=input(ask_place)
if place == "none" :
print("Correct! Proceeding to 6")
else :
print("Oops! This is possibly wrong, wanna try again? ")
place=input(ask_place)
if place == "none" :
print("Yups This one is right!")
else :
print("Nopes, This time there is no visible 5")
input("Press any key to continue: ")
temp_variable = os.system("clear")
print(sudoku)
print("Now we search for 6")
place=input(ask_place)
if place=="5,5" :
print("Correct! Filling up the 6")
else :
print("Oops! This is possibly wrong, wanna try again? ")
place=input(ask_place)
if place=="5,5" :
print("Yups This one is right!")
else :
print("Nopes, lets see now what was the answer")
input("Press any key to see the answer: ")
print("This time it was the fifth row and 5th column i.e 5,5 ")
input("Press any key to continue: ")
temp_variable = os.system("clear")
sudoku="""
+++++++++++++++++++++++++++++++++++++++
| 6 | | [] 3 | 2 | [] 4 | | 7 |
+---+---+---++---+---+---++---+---+---+
| | 3 | [] | | 4 [] | 8 | |
+---+---+---++---+---+---++---+---+---+
| 4 | | [] | | 6 [] | | |
+++++++++++++++++++++++++++++++++++++++
| 1 | 2 | 7 [] | 3 | [] | | 9 |
+---+---+---++---+---+---++---+---+---+
| 3 | | [] 8 |(6)| 7 [] | | 1 |
+---+---+---++---+---+---++---+---+---+
| 8 | | [] | 1 | 2 [] 5 | 7 | 3 |
+++++++++++++++++++++++++++++++++++++++
| | | [] 6 | | 1 [] | | 8 |
+---+---+---++---+---+---++---+---+---+
| | 8 | [] 2 | | [] | 1 | |
+---+---+---++---+---+---++---+---+---+
| 9 | | 1 [] | 8 | 3 [] | | 5 |
+++++++++++++++++++++++++++++++++++++++
"""
print(sudoku)
print("Now we search for 6")
place = input(ask_place)
if place=="none" :
print("Correct! ")
else :
print("Oops! This is possibly wrong, wanna try again? ")
place=input(ask_place)
if place == "none" :
print("Yups This one is right!")
else :
print("Nopes, This time there is no visible 6")
input("Press any key to continue: ")
temp_variable = os.system("clear")
sudoku="""
+++++++++++++++++++++++++++++++++++++++
| 6 | | [] 3 | 2 | [] 4 | | 7 |
+---+---+---++---+---+---++---+---+---+
| | 3 | [] | | 4 [] | 8 | |
+---+---+---++---+---+---++---+---+---+
| 4 | | [] | | 6 [] | | |
+++++++++++++++++++++++++++++++++++++++
| 1 | 2 | 7 [] | 3 | [] | | 9 |
+---+---+---++---+---+---++---+---+---+
| 3 | | [] 8 | 6 | 7 [] | | 1 |
+---+---+---++---+---+---++---+---+---+
| 8 | | [] | 1 | 2 [] 5 | 7 | 3 |
+++++++++++++++++++++++++++++++++++++++
| | | [] 6 | | 1 [] | | 8 |
+---+---+---++---+---+---++---+---+---+
| | 8 | [] 2 | | [] | 1 | |
+---+---+---++---+---+---++---+---+---+
| 9 | | 1 [] | 8 | 3 [] | | 5 |
+++++++++++++++++++++++++++++++++++++++
"""
print(sudoku)
print("Now we search for 7")
place = input(ask_place)
if place == "none" :
print("Correct! Proceeding to 8")
else :
print("Oops! This is possibly wrong, wanna try again? ")
place = input(ask_place)
if place == "none" :
print("Yups This one is right!")
else :
print("Nopes, This time there is no visible 7")
input("Press any key to continue: ")
temp_variable = os.system("clear")
sudoku="""
+++++++++++++++++++++++++++++++++++++++
| 6 | | [] 3 | 2 | [] 4 | | 7 |
+---+---+---++---+---+---++---+---+---+
| | 3 | [] | | 4 [] | 8 | |
+---+---+---++---+---+---++---+---+---+
| 4 | | [] | | 6 [] | | |
+++++++++++++++++++++++++++++++++++++++
| 1 | 2 | 7 [] | 3 | [] | | 9 |
+---+---+---++---+---+---++---+---+---+
| 3 | | [] 8 | 6 | 7 [] | | 1 |
+---+---+---++---+---+---++---+---+---+
| 8 | | [] | 1 | 2 [] 5 | 7 | 3 |
+++++++++++++++++++++++++++++++++++++++
| | | [] 6 | | 1 [] | | 8 |
+---+---+---++---+---+---++---+---+---+
| | 8 | [] 2 | | [] | 1 | |
+---+---+---++---+---+---++---+---+---+
| 9 | | 1 [] | 8 | 3 [] | | 5 |
+++++++++++++++++++++++++++++++++++++++
"""
print(sudoku)
print("Now we search for 8")
place = input(ask_place)
if place=="1,6" :
print("Correct! ")
else :
print("Oops! This is possibly wrong, wanna try again? ")
place=input(ask_place)
if place=="1,6" :
print("Yups This one is right!")
else :
print("Nopes, This time it is at :")
input("Press any key to continue: ")
print("Position: 1,6")
input("Press any key to continue: ")
temp_variable = os.system("clear")
sudoku="""
+++++++++++++++++++++++++++++++++++++++
| 6 | | [] 3 | 2 |(8)[] 4 | | 7 |
+---+---+---++---+---+---++---+---+---+
| | 3 | [] | | 4 [] | 8 | |
+---+---+---++---+---+---++---+---+---+
| 4 | | [] | | 6 [] | | |
+++++++++++++++++++++++++++++++++++++++
| 1 | 2 | 7 [] | 3 | [] | | 9 |
+---+---+---++---+---+---++---+---+---+
| 3 | | [] 8 | 6 | 7 [] | | 1 |
+---+---+---++---+---+---++---+---+---+
| 8 | | [] | 1 | 2 [] 5 | 7 | 3 |
+++++++++++++++++++++++++++++++++++++++
| | | [] 6 | | 1 [] | | 8 |
+---+---+---++---+---+---++---+---+---+
| | 8 | [] 2 | | [] | 1 | |
+---+---+---++---+---+---++---+---+---+
| 9 | | 1 [] | 8 | 3 [] | | 5 |
+++++++++++++++++++++++++++++++++++++++
"""
print(sudoku)
print("Again we search for 8")
place=input(ask_place)
if place == "4,7" :
print("Correct! ")
else :
print("Oops! This is possibly wrong, wanna try again? ")
place = input(ask_place)
if place == "4,7" :
print("Yups This one is right!")
else :
print("Nopes, This time it is at :")
input("Press any key to continue: ")
print("Position: 4,7")
input("Press any key to continue: ")
temp_variable = os.system("clear")
sudoku="""
+++++++++++++++++++++++++++++++++++++++
| 6 | | [] 3 | 2 | 8 [] 4 | | 7 |
+---+---+---++---+---+---++---+---+---+
| | 3 | [] | | 4 [] | 8 | |
+---+---+---++---+---+---++---+---+---+
| 4 | | [] | | 6 [] | | |
+++++++++++++++++++++++++++++++++++++++
| 1 | 2 | 7 [] | 3 | [](8)| | 9 |
+---+---+---++---+---+---++---+---+---+
| 3 | | [] 8 | 6 | 7 [] | | 1 |
+---+---+---++---+---+---++---+---+---+
| 8 | | [] | 1 | 2 [] 5 | 7 | 3 |
+++++++++++++++++++++++++++++++++++++++
| | | [] 6 | | 1 [] | | 8 |
+---+---+---++---+---+---++---+---+---+
| | 8 | [] 2 | | [] | 1 | |
+---+---+---++---+---+---++---+---+---+
| 9 | | 1 [] | 8 | 3 [] | | 5 |
+++++++++++++++++++++++++++++++++++++++
"""
print(sudoku)
print("Again we search for 8")
print("Checking for a number again is helpful at the end of checking all 1-9 once , but if you get faster at checking, check for that number again quickly, and you might find out that the number you've filled recently helpout in filling the number in a previously questionable position")
place = input(ask_place)
if place=="3,3" :
print("Correct! ")
elif place == "none" :
print("See carefully , the '8' you filled at 1,6 . It helps find a new '8' at a previously checked position")
else :
print("Oops! This is possibly wrong, wanna try again? ")
place = input(ask_place)
if place=="3,3" :
print("Yups This one is right!")
else :
print("Nopes, This time it is at :")
input("Press any key to continue: ")
print("Position: 3,3")
input("Press any key to continue: ")
temp_variable = os.system("clear")
sudoku="""
+++++++++++++++++++++++++++++++++++++++
| 6 | | [] 3 | 2 | 8 [] 4 | | 7 |
+---+---+---++---+---+---++---+---+---+
| | 3 | [] | | 4 [] | 8 | |
+---+---+---++---+---+---++---+---+---+
| 4 | |(8)[] | | 6 [] | | |
+++++++++++++++++++++++++++++++++++++++
| 1 | 2 | 7 [] | 3 | [] 8 | | 9 |
+---+---+---++---+---+---++---+---+---+
| 3 | | [] 8 | 6 | 7 [] | | 1 |
+---+---+---++---+---+---++---+---+---+
| 8 | | [] | 1 | 2 [] 5 | 7 | 3 |
+++++++++++++++++++++++++++++++++++++++
| | | [] 6 | | 1 [] | | 8 |
+---+---+---++---+---+---++---+---+---+
| | 8 | [] 2 | | [] | 1 | |
+---+---+---++---+---+---++---+---+---+
| 9 | | 1 [] | 8 | 3 [] | | 5 |
+++++++++++++++++++++++++++++++++++++++
"""
print(sudoku)
print("Now we search for 9")
place = input(ask_place)
if place=="6,4" :
print("Correct! ")
else :
print("Oops! This is possibly wrong, wanna try again? ")
place = input(ask_place)
if place=="6,4" :
print("Yups This one is right!")
else :
print("Nopes, This time it is at :")
input("Press any key to continue: ")
print("Position: 6,4")
input("Press any key to continue: ")
temp_variable = os.system("clear")
sudoku="""
+++++++++++++++++++++++++++++++++++++++
| 6 | | [] 3 | 2 | 8 [] 4 | | 7 |
+---+---+---++---+---+---++---+---+---+
| | 3 | [] | | 4 [] | 8 | |
+---+---+---++---+---+---++---+---+---+
| 4 | | 8 [] | | 6 [] | | |
+++++++++++++++++++++++++++++++++++++++
| 1 | 2 | 7 [] | 3 | [] 8 | | 9 |
+---+---+---++---+---+---++---+---+---+
| 3 | | [] 8 | 6 | 7 [] | | 1 |
+---+---+---++---+---+---++---+---+---+
| 8 | | [](9)| 1 | 2 [] 5 | 7 | 3 |
+++++++++++++++++++++++++++++++++++++++
| | | [] 6 | | 1 [] | | 8 |
+---+---+---++---+---+---++---+---+---+
| | 8 | [] 2 | | [] | 1 | |
+---+---+---++---+---+---++---+---+---+
| 9 | | 1 [] | 8 | 3 [] | | 5 |
+++++++++++++++++++++++++++++++++++++++
"""
print(sudoku)
print("""
Okay , so now we go a little faster and I'll ask you which number is visible.
Remember to answer in ascending order .
For example, if 2 and 5 both are visible , enter 2 first and then proceed similarly.
""")
input("Press any key to continue: ")
temp_variable = os.system("clear")
sudoku="""
+++++++++++++++++++++++++++++++++++++++
| 6 | | [] 3 | 2 | 8 [] 4 | | 7 |
+---+---+---++---+---+---++---+---+---+
| | 3 | [] | | 4 [] | 8 | |
+---+---+---++---+---+---++---+---+---+
| 4 | | 8 [] | | 6 [] | | |
+++++++++++++++++++++++++++++++++++++++
| 1 | 2 | 7 [] | 3 | [] 8 | | 9 |
+---+---+---++---+---+---++---+---+---+
| 3 | | [] 8 | 6 | 7 [] | | 1 |
+---+---+---++---+---+---++---+---+---+
| 8 | | [] 9 | 1 | 2 [] 5 | 7 | 3 |
+++++++++++++++++++++++++++++++++++++++
| | | [] 6 | | 1 [] | | 8 |
+---+---+---++---+---+---++---+---+---+
| | 8 | [] 2 | | [] | 1 | |
+---+---+---++---+---+---++---+---+---+
| 9 | | 1 [] | 8 | 3 [] | | 5 |
+++++++++++++++++++++++++++++++++++++++
"""
print(sudoku)
number = input("Enter the first number from 1-9 visible to you: ")
if number=="4" :
print("Correct! Filling it up")
else :
print("Oops , that might be wrong. Let's try once more.")
number = input("Enter the first number from 1-9 visible to you: ")
if number=="4" :
print("Correct! Filling it up")
else :
print("Oops , that might be wrong. This time answer was 4.")
input("Press any key to continue: ")
temp_variable = os.system("clear")
sudoku="""
+++++++++++++++++++++++++++++++++++++++
| 6 | | [] 3 | 2 | 8 [] 4 | | 7 |
+---+---+---++---+---+---++---+---+---+
| | 3 | [] | | 4 [] | 8 | |
+---+---+---++---+---+---++---+---+---+
| 4 | | 8 [] | | 6 [] | | |
+++++++++++++++++++++++++++++++++++++++
| 1 | 2 | 7 [](4)| 3 | [] 8 | | 9 |
+---+---+---++---+---+---++---+---+---+
| 3 | | [] 8 | 6 | 7 [] | | 1 |
+---+---+---++---+---+---++---+---+---+
| 8 | | [] 9 | 1 | 2 [] 5 | 7 | 3 |
+++++++++++++++++++++++++++++++++++++++
| | | [] 6 | | 1 [] | | 8 |
+---+---+---++---+---+---++---+---+---+
| | 8 | [] 2 | | [] | 1 | |
+---+---+---++---+---+---++---+---+---+
| 9 | | 1 [] | 8 | 3 [] | | 5 |
+++++++++++++++++++++++++++++++++++++++
"""
print(sudoku)
print("""
A word of advice:
If you find a box with all the numbers filled except one.
That is, if you see that a box has eight numbers filled and
only one place is vacant , then hurry and fill that one vacant
box.Since a 3x3 box in sudoku must have all numbers filled from 1-9.
Now enter a number that you find can be filled as described in above situation.""")
number = input("Enter the number: ")
if number == "5" :
print("Exactly!")
else :
print("Okay, let's see in the solution what the correct answer is")
input("Press any key to continue: ")
print("The answer was 5 in the 2nd box in 2nd set that is 4,6 one")
sudoku="""
+++++++++++++++++++++++++++++++++++++++
| 6 | | [] 3 | 2 | 8 [] 4 | | 7 |
+---+---+---++---+---+---++---+---+---+
| | 3 | [] | | 4 [] | 8 | |
+---+---+---++---+---+---++---+---+---+
| 4 | | 8 [] | | 6 [] | | |
+++++++++++++++++++++++++++++++++++++++
| 1 | 2 | 7 [] 4 | 3 |(5)[] 8 | | 9 |
+---+---+---++---+---+---++---+---+---+
| 3 | | [] 8 | 6 | 7 [] | | 1 |
+---+---+---++---+---+---++---+---+---+
| 8 | | [] 9 | 1 | 2 [] 5 | 7 | 3 |
+++++++++++++++++++++++++++++++++++++++
| | | [] 6 | | 1 [] | | 8 |
+---+---+---++---+---+---++---+---+---+
| | 8 | [] 2 | | [] | 1 | |
+---+---+---++---+---+---++---+---+---+
| 9 | | 1 [] | 8 | 3 [] | | 5 |
+++++++++++++++++++++++++++++++++++++++
"""
print(sudoku)
input("Press any key to continue: ")
temp_variable = os.system("clear")
print(sudoku)
number = input("Enter the first number from 1-9 visible to you: ")
if number=="6" :
print("Correct! Filling it up")
else :
print("Oops , that might be wrong. Let's try once more.")
number = input("Enter the first number from 1-9 visible to you: ")
if number=="6" :
print("Correct! Filling it up")
else :
print("Oops , that might be wrong. This time answer was 6.")
input("Press any key to continue: ")
print("The answer was 6 in 4,8 ")
input("Press any key to continue: ")