-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkarlRandomLetters.py
63 lines (41 loc) · 1.44 KB
/
karlRandomLetters.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
from matplotlib import pyplot as plt
from random import randint
from time import time
def randomLetter():
letters = [chr(65 + i) for i in range(26)] # A-Z: 26
return letters[randint(0, len(letters)-1)]
target = ""
output = ""
highestSequenceLength = 5
maxSeconds = 120
print(f"Maximum run time is: {round(highestSequenceLength * maxSeconds / 60, 2)} minutes")
plotX = []
plotY = []
for sequenceLength in range(1, highestSequenceLength+1):
target = ''.join([randomLetter() for _ in range(sequenceLength)])
output = ""
maxTimeReached = False
startTime = time()
while output != target:
output = ''.join([randomLetter() for _ in range(len(target))])
currentTime = time()
currentDifTime = currentTime - startTime
if currentDifTime > maxSeconds:
print(f"Sequence of length {sequenceLength} has taken greater than {maxSeconds} seconds, stopping.")
maxTimeReached = True
break
if maxTimeReached:
break
endTime = time()
difTime = endTime - startTime
plotX.append(sequenceLength)
plotY.append(difTime)
print(f"Sequence {sequenceLength}/{highestSequenceLength} complete.")
# print(f"Target: {target}, Output: {output}")
# print(f"Time taken: {difTime}")
plt.plot(plotX, plotY)
plt.title("Random monkeys")
plt.xlabel("Sequence Length")
plt.xticks(range(1, highestSequenceLength + 1))
plt.ylabel("Time taken (seconds)")
plt.show()