uaveiro-leci/1ano/1semestre/fp/extra1/ex02.py

86 lines
2.4 KiB
Python
Raw Permalink Normal View History

2022-12-01 22:22:35 +00:00
# ID:
"""
Imagine que está a fazer palavras cruzadas (em Inglês) e falta-lhe uma
palavra com o padrão "?YS???Y", onde os "?" representam letras por preencher.
Complete este programa para o ajudar a descobrir a palavra.
O programa inclui instruções para ler uma lista de palavras inglesas a
partir do ficheiro wordlist.txt.
"""
2023-01-30 16:48:43 +00:00
2022-12-01 22:22:35 +00:00
# This function reads words from a file.
def load(fname):
2023-01-30 16:48:43 +00:00
with open(fname) as f:
lst = []
for line in f:
words = line.strip().split()
lst.extend(words)
return lst
2022-12-01 22:22:35 +00:00
""" a)
Complete a função matchesPattern(s, pattern) para devolver
True se s corresponder ao padrão fornecido e False, no caso contrário.
Uma string s corresponde ao padrão se e se tiver os mesmos carateres
que o padrão nas mesmas posições, exceto onde o padrão tem ?.
Nas posições dos ?, não importa que carateres estão na string s.
A correspondência não deve fazer distinção entre maiúsculas e minúsculas.
"""
2023-01-30 16:48:43 +00:00
2022-12-01 22:22:35 +00:00
def matchesPattern(s, pattern):
2023-01-30 16:48:43 +00:00
# Complete ...
if len(s) != len(pattern):
return False
for i in range(len(s)):
if (s[i].lower() != pattern[i].lower()) and (pattern[i] != "?"):
return False
return True
2022-12-01 22:22:35 +00:00
""" b)
Complete a função filterPattern(lst, pattern) para extrair duma lista de strings
as strings que têm o padrão dado.
Sugestão: use a função matchesPattern para testar cada palavra.
"""
2023-01-30 16:48:43 +00:00
2022-12-01 22:22:35 +00:00
def filterPattern(lst, pattern):
2023-01-30 16:48:43 +00:00
# Complete ...
matches = []
for word in lst:
if matchesPattern(word, pattern):
matches.append(word)
return matches
2022-12-01 22:22:35 +00:00
def main():
2023-01-30 16:48:43 +00:00
print("a)")
print(matchesPattern("secret", "s?c??t")) # -> True
print(matchesPattern("secreta", "s?c??t")) # -> False
print(matchesPattern("socket", "s?c??t")) # -> True
print(matchesPattern("soccer", "s?c??t")) # -> False
print(matchesPattern("SEcrEt", "?ecr?t")) # -> True
print(matchesPattern("SEcrET", "?ecr?t")) # -> True
print(matchesPattern("SecrEt", "?ECR?T")) # -> True
2022-12-01 22:22:35 +00:00
2023-01-30 16:48:43 +00:00
words = load("wordlist.txt")
2022-12-01 22:22:35 +00:00
2023-01-30 16:48:43 +00:00
print("b)")
# Solution to "S?C??T"
lst = filterPattern(words, "s?c??t")
print(lst)
2022-12-01 22:22:35 +00:00
2023-01-30 16:48:43 +00:00
assert isinstance(lst, list), "result lst should be a list"
assert "secret" in lst, "result should contain 'secret'"
2022-12-01 22:22:35 +00:00
2023-01-30 16:48:43 +00:00
# Solution to "?YS???Y"
lst = filterPattern(words, "?ys???y")
print(lst)
2022-12-01 22:22:35 +00:00
# Call main function:
if __name__ == "__main__":
2023-01-30 16:48:43 +00:00
main()