Nb entier, Calculabilité & décidabilité
unknown
python
8 months ago
237 B
1
Indexable
Never
def isprime(n): # on élimine les cas triviaux if n < 2 : return False if n % 2 == 0 : return False # on teste tous les diviseurs possibles (il y a beaucoup plus efficace !) for d in range(3,n,2): if n % d == 0 : return False return True
Leave a Comment