norminette

This commit is contained in:
hugogogo
2025-10-28 21:33:13 +01:00
parent 17b1da0822
commit 1ebc36c197
9 changed files with 53 additions and 29 deletions

View File

@@ -27,7 +27,7 @@ def main(argv: list[str]):
print(text.split())
words = [word for word in text.split()]
words = [word for word in text.split()] # mouhaha
filter_words = list(ft_filter(lambda word: len(word) > maxlen, words))
print(filter_words)