forked from ikokkari/PythonProblems
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtester109.py
2921 lines (2565 loc) · 85.5 KB
/
tester109.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
# Automated tester for the problems in the collection
# "109 Python Problems for CCPS 109" by Ilkka Kokkarinen.
# Ilkka Kokkarinen, [email protected]
# Requires Python 3.7+ for the guarantee to iterate collections
# in the insertion order to run all test cases correctly.
# For instructors who want to add their own problems to this set:
#
# 1. Set the value of use_record to False.
# 2. Write your private solution function to top of your private
# model solutions file labs109.py.
# 3. Write your test case generator in this script below.
# 4. Add the individual test into the list of testcases list below,
# using None as its expected checksum for the moment.
# 5. Run this test script.
# 6. Replace None in the test case with the printed checksum.
# 7. Run this test script again to make sure the test passes.
# 8. Once you have done the above for all the functions that you
# want to add, set the value of use_record back to True.
# 9. Delete the expected_answers file from the same folder that
# this script is located in.
# 10. Run this test script to generate the new expected answers file.
# 11. Release the new version of tester and record to students.
from hashlib import sha256
from time import time
from itertools import islice
import random
import gzip
import os.path
from sys import version_info, exit
from collections import deque
import labs109
from fractions import Fraction
# The release date of this version of the tester.
version = "September 30, 2021"
# Fixed seed used to generate pseudorandom numbers.
fixed_seed = 12345
# How many test cases to record in the file for each function.
testcase_cutoff = 300
# Name of the file that contains the expected answers.
recordfile = 'expected_answers'
# Whether to use the expected correct answers when they exist.
use_record = True
# Markers used to separate the parts of the expected answers file.
# These should never appear as the prefix of any expected answer.
version_prefix = '<$$$$>'
function_prefix = '<****>'
# Timeout cutoff for individual function tests, in seconds.
timeout_cutoff = 20
# Convert a dictionary or set result to a list sorted by keys to
# guarantee that such results are identical in all environments.
def canonize(result):
if isinstance(result, dict):
result = [(key, result[key]) for key in result]
result.sort()
elif isinstance(result, set):
result = [key for key in result]
result.sort()
return result
# When reporting an error, try not to flood the user console.
def emit_args(args, cutoff=100):
for (i, a) in enumerate(args):
if i > 0:
print(", ", end='')
if type(a) == list or type(a) == tuple:
if len(a) < cutoff:
print(a, end='')
else:
left = ", ".join([str(x) for x in a[:5]])
right = ", ".join([str(x) for x in a[-5:]])
print(f"[{left}, <{len(a)-10} omitted...>, {right}]", end='')
else:
print(repr(a) if len(repr(a)) < 100 else '[...]', end='')
print()
# Given teacher and student implementations of the same function, run
# the test cases for both of them and output the first or the shortest
# test case for which these two implementations disagree.
def discrepancy(teacher, student, test_cases, stop_at_first=False):
shortest, d1, d2, disc, cases = None, None, None, 0, 0
for n, elem in enumerate(test_cases):
elem2 = elem[:] # In case student function messes up elem...
cases += 1
try:
r1 = canonize(teacher(*elem))
except Exception as e:
r1 = f"TEACHER CRASH! {e}"
try:
r2 = canonize(student(*elem))
except Exception as e:
r2 = f"STUDENT CRASH! {e}"
if r1 != r2:
disc += 1
if (stop_at_first or shortest is None or
len(str(elem2)) < len(shortest)):
shortest, d1, d2 = elem2, r1, r2
if stop_at_first:
break
if shortest is None:
print("Both functions returned the same answers.")
return True
else:
if stop_at_first:
print("First discrepancy found.")
else:
print(f"For {cases} test cases, found {disc} discrepancies.")
print("Shortest discrepancy input was:")
emit_args(shortest)
print(f"Teacher: {repr(d1)}")
print(f"Student: {repr(d2)}")
return False
# Runs the function f for its test cases, calculating SHA256 checksum
# of the results. If the checksum matches the expected, return the
# running time, otherwise return -1. If expected == None, print out
# the computed checksum instead. If recorder != None, print out the
# arguments and expected result into the recorder.
def test_one_function(f, test_cases, expected=None, recorder=None, known=None):
fname, recorded = f.__name__, None
print(f"{fname}: ", end="", flush=True)
if recorder:
print(f"{function_prefix}{fname}", file=recorder)
if known:
recorded = known.get(fname, None)
chk, start_time, crashed = sha256(), time(), False
for (count, test) in enumerate(test_cases):
if not isinstance(test, tuple):
test = (test,)
try:
result = f(*test)
except Exception as e: # catch any exception
crashed = True
print(f"CRASH AT TEST CASE #{count}: {e}")
break
# If the result is a set or dictionary, turn it into sorted list first.
result = canonize(result)
# Update the checksum.
sr = str(result)
chk.update(sr.encode('utf-8'))
if recorder:
print(sr.strip()[:300], file=recorder)
if count >= testcase_cutoff:
break
if use_record and known and count < testcase_cutoff and recorded:
should_be = recorded[count]
if len(should_be) < 295:
ok = sr.strip() == should_be
else:
ok = sr.strip().startswith(should_be)
if not ok:
crashed = True
print(f"DISCREPANCY AT TEST CASE #{count}: ")
print("ARGUMENTS: ", end="")
emit_args(test)
trail = '...' if len(should_be) == 300 else ''
print(f"EXPECTED: {should_be} {trail}")
print(f"RETURNED: {sr}")
break
total_time = time() - start_time
if total_time > timeout_cutoff:
print(f"TIMEOUT AT TEST CASE #{count}. REJECTED AS TOO SLOW.")
crashed = True
break
if not recorder:
total_time = time() - start_time
digest = chk.hexdigest()
if not crashed and not expected:
print(digest[:50]) # Expected checksum for the instructor
return total_time
elif not crashed and digest[:len(expected)] == expected:
print(f"Success in {total_time:.3f} seconds.")
return total_time
elif crashed:
return -1
else:
print("CHECKSUM MISMATCH: AT LEAST ONE RETURNED ANSWER WAS WRONG.")
return -1
else:
return 0
# Sort the suite of test cases according to the order in which
# they appear in the student source code.
def sort_by_source(suite):
funcs = dict()
with open('labs109.py', 'r', encoding='utf-8') as source:
for (lineno, line) in enumerate(source):
if line.startswith("def "):
fname = line[4:line.find('(')].strip()
if fname in funcs:
print(f"WARNING: MULTIPLE DEFINITION FOR {fname}")
funcs[fname] = lineno
suite.sort(key=lambda x: funcs.get(x[0], 9999999))
return suite
# Runs the tests for all functions in the suite, returning the
# count of how many of those were implemented and passed the test.
def test_all_functions(module, suite, recorder=None, known=None):
if recorder:
print("RECORDING THE RESULTS OF INSTRUCTOR MODEL SOLUTIONS.")
print("IF YOU ARE A STUDENT, YOU SHOULD NOT BE SEEING THIS")
print(f"MESSAGE!!! ENSURE THAT THE FILE {recordfile} FROM")
print("WHEREVER YOU DOWNLOADED THIS AUTOMATED TESTER IS ALSO")
print("IN THIS SAME WORKING DIRECTORY!!!")
print()
count, total = 0, 0
if recorder:
print(f"{version_prefix}{version}", file=recorder)
for (fname, test_cases, expected) in sort_by_source(suite):
try:
f = module.__dict__[fname]
except KeyError:
continue
total += 1
result = test_one_function(f, test_cases, expected, recorder, known)
if result >= 0:
count += 1
if recorder:
print("\nRecording model answers complete.")
else:
print(f"{count} out of {total} functions ", end="")
print(f"of {len(suite)} possible work.")
return count
ups = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
lows = "abcdefghijklmnopqrstuvwxyz"
# Some utility functions to help writing test generators.
# Produce an infinite sequence of exponentially increasing integers.
# The parameters scale and skip determine how quickly the sequence grows.
def scale_random(seed, scale, skip):
# The seed value determines the future random sequence.
rng = random.Random(seed)
curr, count, orig = 1, 0, scale
while True:
curr += rng.randint(1, scale)
yield curr
count += 1
if count == skip:
scale = scale * orig
count = 0
# Produce a random n-digit integer with repeating digits.
def random_int(rng, n, prob=70):
r, curr = 0, rng.randint(1, 9)
for _ in range(n):
r = 10 * r + curr
if rng.randint(0, 99) < prob:
curr = rng.randint(0, 9)
return r
# This function replaced warandpeace.txt as the source of text data.
# Since none of the problems using that file were linguistic, it
# was pointless to use real text to test them, helping us shed
# a few megs of dead weight from this project folder.
def random_text_generator(seed, n=70):
rng = random.Random(seed)
alpha = lows
alpha += alpha.upper()
punct = '.,!?'
for _ in range(10000):
line = ""
while len(line) < n:
word = "".join([rng.choice(alpha) for _ in range(rng.randint(1, 20))])
line += " " if len(line) > 0 else ""
line += word
if rng.randint(0, 99) < 20:
line += rng.choice(punct)
yield line
# Create a random n-character string from the given alphabet.
def random_string(alphabet, n, rng):
result = ''
for _ in range(n):
result += rng.choice(alphabet)
return result
# The test case generators for the individual functions.
def reverse_110_generator(seed):
rng = random.Random(seed)
n, count, goal = 4, 0, 5
for _ in range(1500):
yield [rng.randint(0, 1) for _ in range(n)]
count += 1
if count == goal:
count, goal, n = 0, goal + 4, n + 1
def candy_share_generator(seed):
yield from ([1], [1, 0], [0, 1], [1, 0, 1], [2, 0, 0], [0, 3, 0, 0])
rng = random.Random(seed)
n, count, goal = 4, 0, 2
for _ in range(2000):
candies = [0 for _ in range(n)]
remain = rng.randint(3, n-1)
while remain > 0:
c = rng.randint(1, remain)
candies[rng.randint(0, n-1)] += c
remain -= c
yield candies[:]
count += 1
if count == goal:
count, goal, n = 0, goal + 3, n + 1
def leibniz_generator(seed):
yield [1, -1, 1, -1, 1], [0, 1, 2, 3, 4]
rng = random.Random(seed)
n, count, goal, heads = 5, 0, 10, [1]
for _ in range(1500):
if goal < 30 or rng.randint(0, 99) < 50:
e = rng.randint(-n, n)
else:
den = rng.randint(2, n)
num = rng.randint(1, den - 1)
sign = rng.choice([-1, 1])
e = Fraction(sign * num, den)
heads.append(e)
if len(heads) > 3:
p = rng.randint(1, min(10, len(heads) // 2))
pos = rng.sample(range(len(heads)), p)
yield heads, pos
count += 1
if count == goal:
count, goal, n, heads = 0, goal + 1, n + 1, []
def prominences_generator(seed):
yield [42]
yield [0]
yield [1, 3, 1]
yield [3, 1, 4]
yield [1, 10, 5, 20, 6, 10, 4]
yield [3, 10, 9, 8, 7, 6, 5, 4, 3, 11, 1]
rng = random.Random(seed)
scale, n, count, goal = 3, 7, 0, 10
for _ in range(5000):
height, change = [rng.randint(1, scale)], +1
while len(height) < n:
if rng.randint(0, 99) < 40:
change = -change
ee = max(1, height[-1] + change * rng.randint(1, scale))
ee = ee if ee != height[-1] else ee + 1
height.append(ee)
while height[-1] > scale:
height.append(height[-1] - rng.randint(1, scale))
yield height
count += 1
if count == goal:
count, goal, scale, n = 0, goal + 4, scale + 2, n + 1
def brussels_choice_step_generator(seed):
rng = random.Random(seed)
for (i, n) in enumerate(islice(scale_random(seed, 2, 10), 2000)):
n += 10
nn = len(str(n))
a = rng.randint(1, nn)
b = rng.randint(1, nn)
yield n, min(a, b), max(a, b)
def ryerson_letter_grade_generator():
for i in range(0, 150):
yield i
def is_ascending_generator(seed):
yield [1, 2, 2] # Because students don't read instructions
rng = random.Random(seed)
for i in range(500):
for j in range(10):
items = [rng.randint(-(i+2), i+2)]
for k in range(i + 1):
items.append(items[-1] + rng.randint(0, 2 * i + 1))
yield items[:]
if i > 2:
for k in range(rng.randint(0, 5)):
idx = rng.randint(1, len(items)-1)
items[idx-1], items[idx] = items[idx], items[idx-1]
yield items[:]
def safe_squares_generator(seed):
# Start with some small cases to aid first debugging
yield 1, []
yield 1, [(0, 0)]
yield 2, [(0, 1)]
yield 2, [(0, 0), (1, 1)]
yield 3, [(1, 1)]
yield 3, [(0, 0), (2, 2)]
yield 3, [(2, 0), (0, 2)]
yield 3, [(2, 1), (1, 2)]
yield 3, [(0, 1), (0, 2)]
# On to fuzzing...
rng = random.Random(seed)
for i in range(3000):
n = rng.randint(2, 3 + i // 50)
pn = rng.randint(0, n + 2)
pieces = set()
while len(pieces) < pn:
px = rng.randint(0, n - 1)
py = rng.randint(0, n - 1)
if (px, py) not in pieces:
pieces.add((px, py))
yield n, list(pieces)
def rooks_with_friends_generator(seed):
rng = random.Random(seed)
for (n, pieces) in safe_squares_generator(seed):
fn = rng.randint(0, n)
yield n, pieces[:fn], pieces[fn:]
yield n, pieces[fn:], pieces[:fn]
def double_until_all_digits_generator():
for i in range(3000):
yield i
def first_preceded_by_smaller_generator(seed):
rng = random.Random(seed)
count, goal = 0, 1
items = []
for i in range(20000):
items.append(rng.randint(-3 - i, 3 + i))
if len(items) > 3:
j = rng.randint(0, len(items) - 1)
items[-1], items[j] = items[j], items[-1]
yield items[:], rng.randint(1, 2 + len(items) // 2)
count += 1
if count == goal:
count, goal = 0, goal + 2
items = [rng.randint(-3 - i, 3 + i) for _ in range(1 + i // 100)]
def maximum_difference_sublist_generator(seed):
rng = random.Random(seed)
for i in range(1000):
len_ = rng.randint(1, 100)
items = [rng.randint(0, 10000) for _ in range(len_)]
for k in range(1, len_ + 1):
yield items[:], k
def count_and_say_generator(seed):
rng = random.Random(seed)
for i in range(3000):
bursts = rng.randint(1, 4 + i // 10)
digits = ''
for j in range(bursts):
n = rng.randint(1, min(20, j + 4))
digits += rng.choice('0123456789') * n
yield digits
def group_equal_generator(seed):
rng = random.Random(seed)
for i in range(50):
for j in range(10):
items = []
bursts = rng.randint(1, 2 + i // 5)
for k in range(bursts):
n = rng.randint(1, 2 + i // 5)
v = rng.randint(0, 10 + i // 20)
items.extend([v] * n)
yield items,
def longest_palindrome_generator(seed):
rng = random.Random(seed)
for i in range(1000):
p1 = rng.randint(0, i + 3)
p2 = rng.randint(2, i + 3)
p3 = rng.randint(0, i + 3)
left = random_string(lows, p1, rng)
middle = random_string(lows, p2, rng)
if rng.randint(0, 1) == 1:
middle += middle[::-1]
else:
middle += middle[:len(middle)-1:-1]
right = random_string(lows, p3, rng)
yield left + middle + right
def reverse_ascending_sublists_generator(seed):
rng = random.Random(seed)
for i in range(1000):
for _ in range(5):
yield [rng.randint(0, 2*i + k) for k in range(i + 1)]
def give_change_generator(seed):
rng = random.Random(seed)
coins = [1]
for _ in range(10):
coins.append(coins[-1] + rng.randint(1, 1 + coins[-1]))
for _ in range(1000):
for j in range(1, 10):
use = rng.sample(coins, j)
use.sort(reverse=True)
if use[-1] > 1:
use.append(1)
amount = 1
while amount < 5 * use[0]:
yield amount, use
amount += rng.randint(1, 2 + 2 * amount // 3)
suits = ['clubs', 'diamonds', 'hearts', 'spades']
ranks = {'two': 2, 'three': 3, 'four': 4, 'five': 5,
'six': 6, 'seven': 7, 'eight': 8, 'nine': 9,
'ten': 10, 'jack': 11, 'queen': 12, 'king': 13,
'ace': 14}
deck = [(rank, suit) for suit in suits for rank in ranks.keys()]
def hand_is_badugi_generator(seed):
rng = random.Random(seed)
for _ in range(100000):
yield rng.sample(deck, 4)
def bridge_hand_shape_generator(seed):
rng = random.Random(seed)
for _ in range(20000):
yield rng.sample(deck, 13)
def winning_card_generator(seed):
rng = random.Random(seed)
for _ in range(10000):
hand = rng.sample(deck, 4)
for trump in suits:
yield hand[:], trump
yield hand[:], None
def hand_shape_distribution_generator(seed):
rng = random.Random(seed)
for i in range(2, 71):
hands = [rng.sample(deck, 13) for _ in range(i * i)]
yield hands
def milton_work_point_count_generator(seed):
rng = random.Random(seed)
for _ in range(10000):
hand = rng.sample(deck, 13)
for suit in suits:
yield hand, suit
yield hand, 'notrump'
def sort_by_typing_handedness_generator():
f = open('words_sorted.txt', 'r', encoding='utf-8')
words = [x.strip() for x in f]
f.close()
yield words
def possible_words_generator(seed):
with open('words_sorted.txt', 'r', encoding='utf-8') as f:
words = [x.strip() for x in f]
rng = random.Random(seed)
for n in range(40):
patword = rng.choice(words)
letters = sorted(list(set(c for c in patword)))
if len(letters) > 3:
k = len(letters) - rng.randint(1, len(letters) - 3)
guessed = rng.sample(letters, k)
pat = ''
for ch in patword:
pat += ch if ch in guessed else '*'
yield words, pat
def postfix_evaluate_generator(seed):
rng = random.Random(seed)
for _ in range(1000):
exp = []
count = 0
while len(exp) < 5 or count != 1:
if count > 1 and (count > 10 or rng.randint(0, 99) < 50):
exp.append(rng.choice(['+', '-', '*', '/']))
count -= 1
else:
exp.append(rng.randint(1, 10))
count += 1
yield exp
def __create_list(d, rng):
if d < 1:
return rng.randint(1, 100)
else:
n = rng.randint(0, 2 + d)
return [__create_list(d - rng.randint(1, 3), rng) for _ in range(n)]
def reverse_reversed_generator(seed):
rng = random.Random(seed)
n = 3
for i in range(300):
yield __create_list(3 + n, rng)
if i % 50 == 49:
n += 1
def scrabble_value_generator(seed):
rng = random.Random(seed)
with open('words_sorted.txt', 'r', encoding='utf-8') as f:
words = [x.strip() for x in f]
for word in words:
multipliers = [rng.randint(1, 3) for _ in range(len(word))]
yield word, multipliers if rng.randint(0, 99) < 50 else None
def expand_intervals_generator(seed):
yield ''
rng = random.Random(seed)
for j in range(2000):
curr = 0
result = ''
first = True
n = rng.randint(1, 3 + j // 50)
for _ in range(n):
if not first:
result += ','
first = False
if rng.randint(0, 99) < 20:
result += str(curr)
curr += rng.randint(2, 10)
else:
end = curr + rng.randint(1, 30)
result += f"{curr}-{end}"
curr = end + rng.randint(2, 10)
yield result
def collapse_intervals_generator(seed):
yield []
rng = random.Random(seed)
for i in range(1000):
items, curr = [], 1
n = rng.randint(1 + i // 2, i + 3)
for j in range(n):
m = rng.randint(1, 4 + i // 50)
for k in range(m):
items.append(curr)
curr += 1
curr += rng.randint(2, 10 + i * i)
yield items
def recaman_generator():
for n in range(1, 6):
yield 10**n
def __no_repeated_digits(n, allowed):
n = str(n)
for i in range(4):
if n[i] not in allowed:
return False
for j in range(i+1, 4):
if n[i] == n[j]:
return False
return True
def bulls_and_cows_generator(seed):
rng = random.Random(seed)
for _ in range(100):
result = []
n = rng.randint(1, 4)
allowed = rng.sample('123456789', 6)
while len(result) < n:
guess = rng.randint(1000, 9999)
if __no_repeated_digits(guess, allowed):
bulls = rng.randint(0, 3)
cows = rng.randint(0, 3)
cows = min(cows, 4 - bulls)
if not(bulls == 3 and cows == 1):
result.append((guess, bulls, cows))
yield result
def contains_bingo_generator(seed):
rng = random.Random(seed)
nums = range(1, 99)
for _ in range(10000):
card = rng.sample(nums, 25)
card = [card[i:i+5] for i in range(0, 25, 5)]
m = rng.randint(20, 80)
numbers = rng.sample(nums, m)
numbers.sort()
centerfree = [True, False][rng.randint(0, 1)]
yield card, numbers, centerfree
def can_balance_generator(seed):
rng = random.Random(seed)
for i in range(500):
for j in range(10):
left, lm = [], 0
right = [rng.randint(1, i + 2)]
rm = right[0]
while lm != rm and lm + rm < 20 * (i+3):
v = rng.randint(1, i + 5)
s = rng.randint(0, 1)
if len(left) + len(right) > i + j + 3:
if lm < rm:
s, v = 0, (rm - lm) // (len(left) + 1)
else:
s, v = 1, (lm - rm) // (len(right) + 1)
v = max(v, 1)
if s == 0:
left.append(v)
lm += v * len(left)
else:
right.append(v)
rm += v * len(right)
yield left[::-1] + [rng.randint(1, i+2)] + right
def calkin_wilf_generator():
for v in [10, 42, 255, 987, 7654, 12356]:
yield v
def fibonacci_sum_generator(seed):
for v in islice(scale_random(seed, 2, 4), 1500):
yield v
def create_zigzag_generator(seed):
rng = random.Random(seed)
for i in range(10000):
rows = rng.randint(1, 1 + i // 100)
cols = rng.randint(1, 1 + i // 100)
start = rng.randint(1, 100 + i)
yield rows, cols, start
def fibonacci_word_generator(seed):
for v in islice(scale_random(seed, 3, 6), 2000):
yield v
def all_cyclic_shifts_generator():
with open('words_sorted.txt', 'r', encoding='utf-8') as f:
words = [x.strip() for x in f]
yield from words
def aliquot_sequence_generator():
for i in range(1, 130):
yield i, 10
yield i, 100
def josephus_generator(seed):
rng = random.Random(seed)
hop, skip = 1, 1
for n in range(2, 100):
for k in range(1, n):
if n > 20 and rng.randint(0, 99) < 5:
yield hop, skip + rng.randint(2, 10) ** n
else:
yield hop, skip
skip += rng.randint(1, 2 + k)
hop += rng.randint(1, 3 + n // 20)
def balanced_ternary_generator(seed):
yield 0 # Important edge case
for v in islice(scale_random(seed, 3, 10), 2000):
yield v
yield -v
__names = ["brad", "ben", "britain", "donald", "bill", "ronald",
"george", "laura", "barbara", "barack", "angelina",
"jennifer", "ross", "rachel", "monica", "phoebe",
"joey", "chandler", "hillary", "michelle", "melania",
"nancy", "homer", "marge", "bart", "lisa", "maggie",
"waylon", "montgomery", "california", "canada",
"germany", "sheldon", "leonard", "rajesh", "howard",
"penny", "amy", "bernadette", "oumoumou"]
def brangelina_generator(seed):
rng = random.Random(seed)
for _ in range(20000):
first = rng.choice(__names)
second = rng.choice(__names)
yield first, second
yield second, first
def frequency_sort_generator(seed):
rng = random.Random(seed)
count, goal = 0, 1
items = []
for i in range(10000):
yield items[:]
count += 1
if count == goal:
count, goal = 0, goal + 2
items = []
else:
if len(items) < 3 or rng.randint(0, 99) < 30:
items.append(rng.randint(-3 - i*i*i, 3 + i*i*i))
items.append(rng.choice(items))
def count_consecutive_summers_generator():
for i in range(1, 1000):
yield i
def detab_generator(seed):
rng = random.Random(seed)
for (line,) in random_text_generator(seed):
line = line.replace(' ', '\t')
n = rng.randint(1, 7)
yield line, n, ' '
def iterated_remove_pairs_generator(seed):
rng = random.Random(seed)
for k in range(1000):
n = rng.randint(0, 100)
vals = [rng.randint(1, 10000) for _ in range(7)]
yield [vals[rng.randint(0, 6)] for _ in range(n)],
def is_perfect_power_generator(seed):
rng = random.Random(seed)
for k in range(300):
base = rng.randint(2, 3 + k // 4)
exp = rng.randint(2, 3 + k // 10)
off = rng.randint(-1, +1)
yield base ** exp - off,
def sort_by_digit_count_generator(seed):
yield [],
yield [42],
rng = random.Random(seed)
count, goal, n = 0, 1, 1
for k in range(10000):
yield [rng.randint(1, 5 + n * n * n * n) for _ in range(n)],
count += 1
if count > goal:
count, goal, n = 0, goal + 10, n + 1
def count_divisibles_in_range_generator(seed):
prev = 0
vals = islice(scale_random(seed, 2, 6), 1000)
divs = islice(scale_random(seed, 2, 20), 1000)
for (v, k) in zip(vals, divs):
yield prev, v, k
yield -prev, v, k
prev = v
__players = ['anita', 'suzanne', 'suzy', 'tom', 'steve',
'ilkka', 'rajesh', 'amy', 'penny', 'sheldon',
'leonard', 'bernadette', 'howard']
def highest_n_scores_generator(seed):
rng = random.Random(seed)
for _ in range(10000):
scores = [(name, rng.randint(1, 100)) for name in __players for _ in range(rng.randint(0, 20))]
n = rng.randint(1, 10)
yield scores, n
def bridge_hand_shorthand_generator(seed):
rng = random.Random(seed)
for _ in range(10000):
yield rng.sample(deck, 13)
def losing_trick_count_generator(seed):
rng = random.Random(seed)
for _ in range(10000):
yield rng.sample(deck, 13)
def prime_factors_generator(seed):
for v in islice(scale_random(seed, 2, 30), 500):
yield v
def factoring_factorial_generator(seed):
for v in islice(scale_random(seed, 2, 10), 100):
yield v
def riffle_generator(seed):
rng = random.Random(seed)
for i in range(1000):
items = [rng.randint(-i*i, i*i) for _ in range(2 * i)]
yield items[:], True
yield items, False
def words_with_given_shape_generator(seed):
rng = random.Random(seed)
with open('words_sorted.txt', 'r', encoding='utf-8') as f:
words = [x.strip() for x in f]
for _ in range(30):
pattern = [rng.randint(-1, 1) for _ in range(rng.randint(5, 10))]
yield words, pattern
def squares_intersect_generator(seed):
rng = random.Random(seed)
for i in range(100000):
r = 5 + i // 100
x1 = rng.randint(-r, r)
y1 = rng.randint(-r, r)
d1 = rng.randint(-r, r)
x2 = rng.randint(-r, r)
y2 = rng.randint(-r, r)
d2 = rng.randint(-r, r)
b = rng.randint(2, 11)
s = b ** rng.randint(1, 2 + i // 10000)
yield (s * x1, s * y1, s * d1), (s * x2, s * y2, s * d2)
def only_odd_digits_generator(seed):
rng = random.Random(seed)
for i in range(3000):
n = rng.randint(0, 9)
p = 1
one_more = True
for j in range(1 + i // 10):
yield n
yield n+p
p = p * 10
if not one_more:
break
if rng.randint(0, 99) < 95:
n = 10 * n + rng.choice([1, 3, 5, 7, 9])
else:
n = 10 * n + rng.choice([0, 2, 4, 6, 8])
one_more = False
def pancake_scramble_generator(seed):
rng = random.Random(seed)
with open('words_sorted.txt', 'r', encoding='utf-8') as f:
words = [x.strip() for x in f]
for _ in range(10000):
yield rng.choice(words)
def lattice_paths_generator(seed):