Changed number of repeats
Browse files
solver.py
CHANGED
|
@@ -699,7 +699,7 @@ class QuizSolver:
|
|
| 699 |
repeats=0
|
| 700 |
else:
|
| 701 |
repeats+=1
|
| 702 |
-
if repeats<=
|
| 703 |
print("Repeating question")
|
| 704 |
continue
|
| 705 |
else:
|
|
@@ -714,7 +714,7 @@ class QuizSolver:
|
|
| 714 |
|
| 715 |
else:
|
| 716 |
repeats+=1
|
| 717 |
-
if repeats<=
|
| 718 |
print("Repeating question")
|
| 719 |
continue
|
| 720 |
else:
|
|
|
|
| 699 |
repeats=0
|
| 700 |
else:
|
| 701 |
repeats+=1
|
| 702 |
+
if repeats<=1:
|
| 703 |
print("Repeating question")
|
| 704 |
continue
|
| 705 |
else:
|
|
|
|
| 714 |
|
| 715 |
else:
|
| 716 |
repeats+=1
|
| 717 |
+
if repeats<=1:
|
| 718 |
print("Repeating question")
|
| 719 |
continue
|
| 720 |
else:
|