forked from mouredev/retos-programacion-2023
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cf71619
commit 54f4fc2
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
def sumaObjetivo(numeros:list, objetivo:int): | ||
""" | ||
Encuentra todas las combinaciones de los números de una | ||
lista que suman el valor objetivo. | ||
Args: | ||
- numeros (list): Lista de numeros, enteros positivos, de la que quiero | ||
encontrar las combinaciones. | ||
- objetivo (int): Valor entero positivo objetivo. | ||
Returns: | ||
- combinaciones (list): Lista con las combinaciones encontradas. | ||
""" | ||
# Caso base de la recursión (que la suma de la lista sea el numero) | ||
if sum(numeros) == objetivo: | ||
return [numeros] | ||
|
||
# Defino la lista donde guardadaré las combinaciones | ||
combinaciones = [] | ||
|
||
for i in range(len(numeros)): | ||
# Evaluo cada lista posible | ||
resto_numeros = numeros[:i] + numeros[i+1:] | ||
# Encuentro las listas que cumplen | ||
combinaciones_resto = sumaObjetivo(resto_numeros, objetivo) | ||
|
||
# Para cada combinacion encontrada, si no está en las combinaciones, la añado | ||
# el if lo aplico para evitar listas repetidas | ||
for combinacion in combinaciones_resto: | ||
if combinacion not in combinaciones: | ||
combinaciones.append(combinacion) | ||
|
||
return combinaciones | ||
|
||
resultado = sumaObjetivo([1, 5, 3, 2, 3, 6], 6) | ||
print(f"Soluciones: {resultado}") |