Skip to content

Commit f13e52c

Browse files
committed
Solved warnings
1 parent f1460d6 commit f13e52c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/main/main.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,9 @@ def test_algoithm(op):
4141
print('\n\n\tSorting Algorithms\n\n')
4242

4343
a_length = int(input('Size of the array to be sorted: '))
44-
min = int(input('Smallest possible number: '))
45-
max = int(input('Greater possible number: '))
44+
45+
minimun = int(input('Smallest possible number: '))
46+
maximun = int(input('Greater possible number: '))
4647

4748
vet = [random.randint(min, max) for r in xrange(a_length)]
4849

0 commit comments

Comments
 (0)