Skip to content

Instantly share code, notes, and snippets.

@salluzziluca
Last active November 2, 2021 19:35
Show Gist options
  • Save salluzziluca/ef011b21070730266281b2cc7467edf9 to your computer and use it in GitHub Desktop.
Save salluzziluca/ef011b21070730266281b2cc7467edf9 to your computer and use it in GitHub Desktop.
Busqueda linea, secuencial o por fuerza bruta
def busqueda_lineal(lista, item):
largo=len(lista)
encontrado = False
i = 0
while i < largo and encontrado == False:
if lista[i]==item:
posicion =i
encontrado = True
i+=1
return posicion
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment