We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
`enteros = [20, 15, 12, 10, 7, 6, 4, 3, 1]
def faltantes(enteros):
faltantes = [] num = max(enteros) while num > 0: if num not in enteros: faltantes.append(num) num = num - 1 return faltantes
def faltantes_1(enteros): return [num for num in range(1, max(enteros) + 1) if num not in enteros]
print(faltantes_1(enteros))`
The text was updated successfully, but these errors were encountered:
No branches or pull requests
`enteros = [20, 15, 12, 10, 7, 6, 4, 3, 1]
def faltantes(enteros):
def faltantes_1(enteros):
return [num for num in range(1, max(enteros) + 1) if num not in enteros]
print(faltantes_1(enteros))`
The text was updated successfully, but these errors were encountered: