Try something

This commit is contained in:
Ethanell 2019-12-02 08:18:26 +01:00
parent 21f447c67a
commit b636b2ba14

View file

@ -1,14 +1,17 @@
strings = open("input.txt").read().split("\n")[:-1] strings = open("input.txt").read().split("\n")[:-1]
nice = 0 nice = 0
for i in strings: for i in strings:
pair = False
double = False double = False
for j in range(len(i)-1): for j in range(len(i)-1):
if i.count(f"{i[j]}{i[j+1]}") >= 2 and f"{i[j]}{i[j]}{i[j]}" not in i: if not pair:
double = True if i.count(f"{i[j]}{i[j+1]}") >= 2 and f"{i[j]}{i[j]}{i[j]}" not in i:
break pair = True
for j in range(len(i)): if not double:
f2 = i.find(i[j], j+1) f2 = i.find(i[j], j+1)
if f2-j == 2 and double: if f2-j == 2:
double = True
if pair and double:
nice+=1 nice+=1
break break
print(nice) print(nice)