forked from mouredev/Weekly-Challenge-2022-Kotlin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchallenge47.py
82 lines (54 loc) · 1.95 KB
/
challenge47.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
#RearlanFDX@Twitch
"""
/*
* Reto #47
* VOCAL MÁS COMÚN
* Fecha publicación enunciado: 21/11/22
* Fecha publicación resolución: 28/11/22
* Dificultad: FÁCIL
*
* Enunciado: Crea un función que reciba un texto y retorne la vocal que más veces se repita.
* Si no hay vocales podrá devolver vacío.
*
* Información adicional:
* - Usa el canal de nuestro Discord (https://mouredev.com/discord) "🔁reto-semanal"
* para preguntas, dudas o prestar ayuda a la comunidad.
* - Tienes toda la información sobre los retos semanales en
* https://retosdeprogramacion.com/semanales2022.
*
*/
Resultado de la ejecucion:
Testing challenge MoureDev..
Text: "rty" have max vocal ""
Text: "Hola MoureDev" have max vocal "e"
Text: "aaaaeeeoooooii" have max vocal "o"
Text: "ThisIsATestForChallenge" have max vocal "e"
Text: "more more ore ore wana wana wona aaa" have max vocal "a"
"""
def maxVocal(text):
VOCALS = "aeiou"
#dejamos solo las vocales en una lista:
findedVocals = [char for char in text.lower() if char in VOCALS]
if not findedVocals:
#no hay vocales
return "";
#hacemos un juego de vocales no repetidas:
theVocals = list(set(findedVocals));
#hacemos una cuenta, para cada vocal hallada:
counts = [findedVocals.count(char) for char in theVocals]
#elegimos el indice de la cuenta maxima en counts:
indexOfMax = counts.index(max(counts))
return theVocals[indexOfMax]
#solo ejecutar si no se llama como un modulo:
if __name__ == "__main__":
test_texts = [
"rty",
"Hola MoureDev",
"aaaaeeeoooooii",
"ThisIsATestForChallenge",
"more more ore ore wana wana wona aaa",
];
print("Testing challenge MoureDev..");
for text in test_texts:
print('Text: "%s" have max vocal "%s"' % (text, maxVocal(text)) );