-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday4.py
61 lines (46 loc) · 1.54 KB
/
day4.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
# day4.py
import math
lowerLimit = 666699
upperLimit = 666905
#lowerLimit = 307237
#upperLimit = 769058
lowerLimit = 123400
upperLimit = 123445
def possiblePassword(password):
onlyIncrease = True
hasDouble = False
noLargerDouble = True
doubleMatches = [0, 0, 0, 0, 0]
split = [(password//(10**i))%10 for i in range(math.ceil(math.log(password, 10))-1, -1, -1)]
#print(split)
for i in range(1,len(split)):
if split[i-1] > split[i]:
onlyIncrease = False
#print(split[i-1], split[i], onlyIncrease)
if split[i-1] == split[i]:
doubleMatches[i-1] = split[i]
hasDouble = True
if onlyIncrease and hasDouble:
for x in range(0, len(doubleMatches) - 1):
if doubleMatches[x] != 0:
if doubleMatches[x] == doubleMatches[x+1]:
print("Match at x=",x, "and x+1:", doubleMatches[x])
noLargerDouble = False
if doubleMatches[x] < max(doubleMatches):
noLargerDouble = True
print(password, doubleMatches, doubleMatches[x], x, max(doubleMatches))
print(doubleMatches[x], max(doubleMatches))
print(password, onlyIncrease, hasDouble, noLargerDouble)
return (onlyIncrease and hasDouble and noLargerDouble)
# The code
223450
print("Test 112233: True", possiblePassword(112233))
print("Test 123444: False", possiblePassword(123444))
print("Test 111122: True", possiblePassword(111122))
print("-------------------------------------------")
possibleMatches = 0
for pswd in range(lowerLimit, upperLimit + 1):
if possiblePassword(pswd):
possibleMatches += 1
print(possibleMatches)
print("Possible matches:", possibleMatches)