Unseen wrote a simple python program to calculate how many matches you will need to get the desired score.
Use the link to run the script if you dont have python installed:
https://www.online-python.com/
# match scores in any order you choose
# in this example its
#match 3 = 41
#match 4 = 28
#match 5 = 11
# here is an example of a score ending in two
#scores = [41, 28, 11]
#target = 62
#digits = 2
#matchLimit = 7
scores = [86, 2, 76]
target = 62
digitCount = 2
matchLimit = 7
##############
# Dont change below
##############
def calculate(l):
if len(l) == len(scores):
return
for count in range(0,matchLimit):
t = l.copy()
t.append(count)
result = 0
for i in range(0,len(t)):
result += scores[i] * t[i]
result = round(result)
value = int(str(result)[-digitCount:])
if value == target:
print(t)
calculate(t)
calculate([])
print('match search complete. if no results are displayed (example: [x,x,x]) then you need to try a different girl.')