We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13fc19f commit d539c7dCopy full SHA for d539c7d
src/python/maximo_minimo_dc.py
@@ -34,7 +34,7 @@ def getMinMax(min_value, max_value, vetor):
34
vetor = [random.randrange(10, 100) for _ in range(0, 10)]
35
print(vetor)
36
37
- min_value, max_value = getMinMax(0, len(vetor) - 1, vetor)
+ max_value, min_value = getMinMax(0, len(vetor) - 1, vetor)
38
39
print(f"Min DC: {min_value}")
40
print(f"Max DC: {max_value}")
0 commit comments