Fonction pour la longueur du mot
This commit is contained in:
parent
ba5600e65f
commit
5e60b32352
14
wgamesolv.py
14
wgamesolv.py
@ -140,15 +140,15 @@ def patternCheck(pattern, mot, l):
|
||||
return(1)
|
||||
'''
|
||||
|
||||
def resolv_fl(liste, fl):
|
||||
def resolv_fl(liste, firstletter):
|
||||
# On ne garde que les mots qui commence par FirstLetter
|
||||
return [mot for mot in liste if mot[0] == fl]
|
||||
return [mot for mot in liste if mot[0] == firstletter]
|
||||
|
||||
|
||||
def resolv_len(liste, lenght):
|
||||
# On ne garde que les mots qui ont la bonne longueur
|
||||
return [mot for mot in liste if len(mot) == lenght]
|
||||
|
||||
# Nb Lettres : élimination des mots n'ayant pas le bon nombre de lettres
|
||||
if fl:
|
||||
goodLen = [mot for mot in goodFl if len(mot) == nb]
|
||||
else:
|
||||
goodLen = [mot for mot in liste if len(mot) == nb]
|
||||
|
||||
# First Try
|
||||
if ft:
|
||||
|
Loading…
Reference in New Issue
Block a user