Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created January 14, 2021 22:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/853d93fb7d7feeaf3c24166979118cf7 to your computer and use it in GitHub Desktop.
Save parzibyte/853d93fb7d7feeaf3c24166979118cf7 to your computer and use it in GitHub Desktop.
def menor_de_arreglo(arreglo):
menor = arreglo[0]
for elemento in arreglo:
if elemento < menor:
menor = elemento
return menor
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment