-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiqGenerator.py
453 lines (372 loc) · 12.3 KB
/
iqGenerator.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
import string
import random
import copy
class RandomChars:
def __init__(self, countUniqueChars, repeatLimit):
self.totalCharCount = 0
self.countUniqueChars = countUniqueChars
self.repeatLimit = repeatLimit
self.selectedChars = RandomChars.GetNChars(countUniqueChars)
def __iter__(self):
self.totalCharCount = 0
self.charCounts = {c:0 for c in self.selectedChars}
return self
def __next__(self):
if self.totalCharCount >= self.countUniqueChars * self.repeatLimit:
raise StopIteration()
else:
while True:
c = random.choice(self.selectedChars)
if self.charCounts[c] < self.repeatLimit:
self.totalCharCount += 1
self.charCounts[c] += 1
return self.RandomSwapCase(c)
@staticmethod
def RandomSwapCase(c):
if random.random() > .5:
return c.swapcase()
return c
# returns mixed case, but without repeating a letter
@staticmethod
def GetNChars(n):
selectedChars = random.sample(string.ascii_lowercase, n)
return [c for c in selectedChars]
class CharMatrix:
def __init__(self, size):
chars = iter(RandomChars(size+1, size))
self.size = size
self.rows = []
for i in range(size):
row = []
for j in range(size):
row.append(next(chars))
self.rows.append(row)
def __iter__(self):
self._i_ = 0
return self
def __next__(self):
if self._i_ >= self.size**2:
raise StopIteration()
result = self.rows[ self._i_//self.size ][ self._i_%self.size ]
self._i_ += 1
return result
def Reflect(self, axis):
reflected = []
for j in range(self.size-1, -1, -1):
reflected.append(self.rows[j])
self.rows = reflected
if axis == 'x':
pass # This if is here just so there is a complete enumeration of possibilities
elif axis == 'y':
self.Rotate(180)
elif axis == 'y=x':
self.Rotate(270)
elif axis == 'y=-x':
self.Rotate(90)
else:
raise Exception()
def Rotate(self, degrees):
rotated = []
if degrees == 90 or degrees == -270:
for j in range(self.size):
newRow = []
for i in range(self.size-1, -1, -1):
newRow.append(self.rows[i][j])
rotated.append(newRow)
elif degrees == 180 or degrees == -180:
for i in range(self.size-1, -1, -1):
newRow = []
for j in range(self.size-1, -1, -1):
newRow.append(self.rows[i][j])
rotated.append(newRow)
elif degrees == -90 or degrees == 270:
for j in range(self.size-1, -1, -1):
newRow = []
for i in range(self.size):
newRow.append(self.rows[i][j])
rotated.append(newRow)
else:
raise Exception()
self.rows = rotated
def RowShift(self, row, n):
n = -n
self.rows[row] = self.rows[row][n:] + self.rows[row][:n]
def ColShift(self, col, n):
tmpCol = []
for i in range(self.size):
tmpCol.append(self.rows[i][col])
for i in range(self.size):
self.rows[i][col] = tmpCol[(i+n)%self.size]
def __str__(self):
horizontalRule = "-" * ( 4*self.size +1 )
s = horizontalRule + '\n'
for row in self.rows:
for c in row:
s += "| " + c + " "
s += "|\n" + horizontalRule + '\n'
return s.rstrip('\n')
class Transformation:
def __eq__(self, other):
return type(self) == type(other)
@staticmethod
def _conditionalDifficulty(oldTrans, newTrans):
if oldTrans == newTrans:
return False
types = (type(oldTrans), type(newTrans))
if SwapCase in types:
return newTrans.difficulty
if Rotate in types:
# A rotation and reflection is always equivalent to a different reflection
if Reflect in types:
return False
if HorizontalShift in types or VerticalShift in types:
return newTrans.difficulty +1.5
if RowShift in types or ColShift in types:
return newTrans.difficulty +2
raise Exception()
if Reflect in types:
if HorizontalShift in types or VerticalShift in types:
return newTrans.difficulty +1.5
if RowShift in types or ColShift in types:
return newTrans.difficulty +2
raise Exception()
if HorizontalShift in types:
if VerticalShift in types:
return newTrans.difficulty
if RowShift in types or ColShift in types:
return newTrans.difficulty +1
raise Exception()
if VerticalShift in types:
if RowShift in types or ColShift in types:
return newTrans.difficulty +1
raise Exception()
if RowShift in types:
if type(oldTrans) == type(newTrans):
if abs(oldTrans.row - newTrans.row) == 1 and oldTrans.shift == newTrans.shift:
return 0.1
return newTrans.difficulty
if ColShift in types:
return newTrans.difficulty +1
raise Exception()
if ColShift in types:
if type(oldTrans) == type(newTrans):
if abs(oldTrans.col - newTrans.col) == 1 and oldTrans.shift == newTrans.shift:
return 0.1
return newTrans.difficulty
raise Exception(str(oldTrans) + ":" + str(newTrans))
@classmethod
def ConditionalDifficulty(cls, oldTransfs, newTrans):
maxDifficulty = newTrans.difficulty
minDifficulty = newTrans.difficulty
for trans in oldTransfs:
conditionalDifficulty = cls._conditionalDifficulty(trans, newTrans)
if not conditionalDifficulty:
return False
if maxDifficulty < conditionalDifficulty:
maxDifficulty = conditionalDifficulty
elif minDifficulty > conditionalDifficulty:
minDifficulty = conditionalDifficulty
if minDifficulty < newTrans.difficulty:
return minDifficulty
return maxDifficulty
@staticmethod
def GetRandomTransformation(size):
transformations = [Rotate, Reflect, HorizontalShift, VerticalShift, RowShift, ColShift, SwapCase]
# The weights are to account for rotation and reflection containng more than one transformation
weights = [3, 4, 1, 1, 1, 1, 1]
return random.choices(transformations, weights)[0].GetRandom(size)
@classmethod
def GetRandomTransformations(cls, size, targetDifficulty):
difficulty = 0
transformations = []
while difficulty <= targetDifficulty - .5:
trans = cls.GetRandomTransformation(size)
trans.difficulty = cls.ConditionalDifficulty(transformations, trans)
if trans.difficulty and trans.difficulty + difficulty <= targetDifficulty + .5:
difficulty += trans.difficulty
transformations.append(trans)
return transformations
class Rotate(Transformation):
def __init__(self, degrees):
self.degrees = degrees
self.difficulty = 2
if degrees == 180:
self.difficulty = 1
def __str__(self):
return f"Rotate by {self.degrees} degrees"
@classmethod
def GetRandom(cls, size):
return cls(random.choice((90, 180, 270)))
def Transform(self, matrix):
matrix.Rotate(self.degrees)
class Reflect(Transformation):
def __init__(self, axis):
self.axis = axis
self.difficulty = 1
def __str__(self):
return f"Matrix was reflected about the {self.axis} axis"
@classmethod
def GetRandom(cls, size):
return cls(random.choice(('x', 'y', 'y=x', 'y=-x')))
def Transform(self, matrix):
matrix.Reflect(self.axis)
class HorizontalShift(Transformation):
def __init__(self, shift):
self.shift = shift
self.difficulty = 1
def __str__(self):
return f"Matrix was shifted {self.shift} positions horizontally"
@classmethod
def GetRandom(cls, size):
return cls(random.choice(range(1, size)))
def Transform(self, matrix):
for i in range(matrix.size):
matrix.RowShift(i, self.shift)
class VerticalShift(Transformation):
def __init__(self, shift):
self.shift = shift
self.difficulty = 1
def __str__(self):
return f"Matrix was shifted {self.shift} positions vertically"
@classmethod
def GetRandom(cls, size):
return cls(random.choice(range(1, size)))
def Transform(self, matrix):
for j in range(matrix.size):
matrix.ColShift(j, self.shift)
class RowShift(Transformation):
def __init__(self, row, shift):
self.row = row
self.shift = shift
self.difficulty = 2
if abs(shift) == 1:
self.difficulty = 1
def __eq__(self, other):
return type(self) == type(other) and self.row == other.row
def __str__(self):
return f"Row {self.row} was shifted {self.shift} positions horizontally (zero indexing)"
@classmethod
def GetRandom(cls, size):
return cls(random.choice(range(size)), random.choice(range(1, size)))
def Transform(self, matrix):
matrix.RowShift(self.row, self.shift)
class ColShift(Transformation):
def __init__(self, col, shift):
self.col = col
self.shift = shift
self.difficulty = 2
if abs(shift) == 1:
self.difficulty = 1
def __eq__(self, other):
return type(self) == type(other) and self.col == other.col
def __str__(self):
return f"Column {self.col} was shifted {self.shift} positions vertically (zero indexing)"
@classmethod
def GetRandom(cls, size):
return cls(random.choice(range(size)), random.choice(range(1, size)))
def Transform(self, matrix):
matrix.ColShift(self.col, self.shift)
class SwapCase(Transformation):
def __init__(self, row, col):
self.row = row
self.col = col
self.difficulty = 0.25
def __eq__(self, other):
return type(self) == type(other) and self.row == other.row and self.col == other.col
def __str__(self):
return f"The case of row {self.row} column {self.col} has been swapped (zero indexing)"
@classmethod
def GetRandom(cls, size):
return cls(random.choice(range(size)), random.choice(range(size)))
def Transform(self, matrix):
matrix.rows[self.row][self.col] = matrix.rows[self.row][self.col].swapcase()
class Sequence:
def __init__(self, size, difficulty):
self.size = size
self.matricies = []
self.matricies.append(CharMatrix(size))
self.transformations = Transformation.GetRandomTransformations(self.size, difficulty)
for m in range(3):
nextMatrix = copy.deepcopy(self.matricies[-1])
for trans in self.transformations:
trans.Transform(nextMatrix)
self.matricies.append(nextMatrix)
def _matrixRowToStr(self, start, stop):
horizontalRule = ("-" * ( 4*self.size +1 ) + " ") * (stop - start)
s = horizontalRule + "\n"
for i in range(self.size):
for matrix in self.matricies[start:stop]:
for c in matrix.rows[i]:
s += "| " + c + " "
s += "| "
s += "\n" + horizontalRule + "\n"
return s
def GetProblemStr(self):
s = ""
s += self._matrixRowToStr(0, 3) + "\n"
return s
def GetSolutionStr(self):
s = "\n" + str(self.matricies[-1]) + "\n\n"
for transformation in self.transformations:
s += str(transformation) + "\n"
return s
instructions = '''Instructions:
The leftmost matrix is the start matrix.
The center matrix is produced by applying a series of transformations to the left matrix.
The right matrix is produced by applying the same transformations to the center matrix.
If we apply the same transformations to the right matrix, we will get the final matrix.
Try to predict the final matrix.
Possible transformations:
Reflection about the x, y, y=x, and y=-x axis
Rotation by 90, 180, and 270 degrees
Shifting the matrix vertically or horizontally
Shifting a row or column
Swapping the case of a cell'''
class CmdInterface:
@staticmethod
def GetMatrixSize():
while True:
matrixSize = input("Enter matrix size (4): ")
if not matrixSize:
matrixSize = 4
try:
matrixSize = int(matrixSize)
if matrixSize < 3:
print("Matrix size must be >=3")
else:
return matrixSize
except Exception:
print("Matrix size must be an integer >=3.")
@staticmethod
def GetDifficulty():
while True:
difficultyStr = input("Easy (e) (default), Medium (m), or Hard (h)?: ")
if not difficultyStr:
difficultyStr = 'e'
difficultyStr = difficultyStr.lower()
if difficultyStr == 'easy' or difficultyStr == 'e':
return 2.5
if difficultyStr == 'medium' or difficultyStr == 'm':
return 4
if difficultyStr == 'hard' or difficultyStr == 'h':
return 6
print("Please select a valid difficulty.")
@classmethod
def Run(cls):
print()
matrixSize = cls.GetMatrixSize()
print()
difficulty = cls.GetDifficulty()
print()
print(instructions)
print()
while True:
seq = Sequence(matrixSize, difficulty)
print(seq.GetProblemStr())
input("Press enter for solution: ")
print(seq.GetSolutionStr())
input("\n Press enter for new problem: ")
print("\n --------- new problem ---------- \n")
def main():
CmdInterface.Run()
main()