Skip to content

Commit

Permalink
Rafael Guterres Jeffman
Browse files Browse the repository at this point in the history
Solução parcial para o exercício.

Olhe a aba _Checks_ e veja os resultados.
  • Loading branch information
rafasgj committed Mar 20, 2024
1 parent 6cd9a1a commit b3cd6f0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/zero.py
Expand Up @@ -10,3 +10,8 @@ def procura_maior(lista):
if item > maior:
maior = item
return maior


def procura_menor(lista):
"""Retorna o menor item da lista."""
return min(lista)

0 comments on commit b3cd6f0

Please sign in to comment.