Skip to content

Instantly share code, notes, and snippets.

@fuwiak
Created August 6, 2020 15:24
Show Gist options
  • Save fuwiak/d14e6a6f9a82a517db53cc0aced3f566 to your computer and use it in GitHub Desktop.
Save fuwiak/d14e6a6f9a82a517db53cc0aced3f566 to your computer and use it in GitHub Desktop.
def find_min(lista):
min_ = lista[0]
for x in lista:
if x<min_:
min_=x
return min_
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment