Skip to content

Commit 9ccbda7

Browse files
committed
Fix nome de variavel maximo_minimo_dc python
1 parent 211acf6 commit 9ccbda7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/python/maximo_minimo_dc.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def min_max_dc(vetor, inicio, fim):
2020
vetor = [random.randrange(10, 100) for _ in range(0, 10)]
2121
print(vetor)
2222

23-
inicio, fim = min_max_dc(vetor, 0, len(vetor) - 1)
23+
minimo, maximo = min_max_dc(vetor, 0, len(vetor) - 1)
2424

25-
print(f'Min DC: {inicio}')
26-
print(f'Max DC: {fim}')
25+
print(f'Min DC: {minimo}')
26+
print(f'Max DC: {maximo}')

0 commit comments

Comments
 (0)