Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: verify function #138

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions src/verify.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import random

def genera_array_numeri_random(numero_elementi, valore_minimo, valore_massimo):
return [random.randint(valore_minimo, valore_massimo) for _ in range(numero_elementi)]

numero_elementi = 10 # Numero di elementi nell'array
valore_minimo = 1 # Il valore minimo che può essere generato
valore_massimo = 15 # Il valore massimo che può essere generato

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Definisci le costanti in upper_case.


array_numeri_random = genera_array_numeri_random(numero_elementi, valore_minimo, valore_massimo)

numero_da_cercare = int(input('Inserisci il numero da cercare: '))

trovato = False

for numero in array_numeri_random:
if numero == numero_da_cercare:
trovato = True
break

if trovato:
print(f"Il numero {numero_da_cercare} è presente nell'array.")
else:
print(f"Il numero {numero_da_cercare} non è presente nell'array.")