diff --git a/maths-pour-info/base2modulo7.py b/maths-pour-info/base2modulo7.py index 995238b..0a40c7b 100644 --- a/maths-pour-info/base2modulo7.py +++ b/maths-pour-info/base2modulo7.py @@ -27,16 +27,11 @@ def automate_modulo_7(nombre: str) -> bool: (3, 4), # état 5 (5, 6), # état 6 ] - etat_courant = 0 - + etat_courant = 0 # état initial for chiffre in nombre: - if chiffre not in ("0", "1"): - raise ValueError(f"{nombre} doit être binaire") etat_courant = etats[etat_courant][int(chiffre)] - if etat_courant == 0: return True - return False