-
Notifications
You must be signed in to change notification settings - Fork 0
/
codeAdvent_6.py
86 lines (66 loc) · 1.68 KB
/
codeAdvent_6.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
'''
Created on 26 july 2021
@author: Antonio Martínez Fernández
'''
array = []
array_v2 = []
contador = 0
contador_v2 = 0
def comprobar():
global array
aux = 0
for i in range(26):
if(array[i] == 1):
aux += 1
return aux
def lectura():
global array
global contador
archivo = open("input5.txt")
while True:
linea = archivo.readline()
if (linea.rstrip() == "" or not linea):
contador += comprobar()
for i in range(26):
array[i] = 0
if(not linea):
break
else:
for i in range(len(linea)-1):
aux = ord(linea[i])-97
array[aux] = 1
def comprobar_v2(m):
global array_v2
aux = 0
for i in range(26):
if(array[i] == m):
aux += 1
return aux
def lectura_v2():
global array_v2
global contador_v2
miembros = 0
archivo = open("input5.txt")
while True:
linea = archivo.readline()
if (linea.rstrip() == "" or not linea):
contador_v2 += comprobar_v2(miembros)
miembros = 0
for i in range(26):
array[i] = 0
if(not linea):
break
else:
for i in range(len(linea)-1):
aux = ord(linea[i])-97
array[aux] += 1
miembros += 1
if __name__ == '__main__':
for i in range(26):
array.append(0)
for i in range(26):
array_v2.append(0)
lectura()
lectura_v2()
print(contador)
print(contador_v2)