Skip to content

Commit

Permalink
Arreglado un pequeño error
Browse files Browse the repository at this point in the history
  • Loading branch information
dcsibon committed Oct 28, 2024
1 parent 1473b8e commit b3666d0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions otros/adivinar_numero_v3.py
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ def elegir_opcion_menu() -> int:
return opcion


def jugar(numero_oculto, intentos, frio, caliente):
def jugar(numero_oculto, minimo, maximo, intentos, frio, caliente):
"""
Gestiona el proceso del juego de adivinar el número oculto y muestra los resultados.
Expand Down Expand Up @@ -529,7 +529,7 @@ def main():

if opcion == 1:
numero_oculto = genera_numero_oculto(minimo, maximo)
jugar(numero_oculto, intentos, frio, caliente)
jugar(numero_oculto, minimo, maximo, intentos, frio, caliente)
elif opcion == 2:
minimo, maximo, intentos, frio, caliente = configurar_juego()
elif opcion == 3:
Expand Down
1 change: 1 addition & 0 deletions otros/adivinar_numero_v3_alumnos.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,7 @@ def mostrar_menu():
print("4. Salir.\n")
limpiar_pantalla()


def comprobar_opcion()
# Crear la documentación recomendada para esta función
return 1 <= opcion <= 4
Expand Down

0 comments on commit b3666d0

Please sign in to comment.