We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1460d6 commit f13e52cCopy full SHA for f13e52c
src/main/main.py
@@ -41,8 +41,9 @@ def test_algoithm(op):
41
print('\n\n\tSorting Algorithms\n\n')
42
43
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: '))
+
+ minimun = int(input('Smallest possible number: '))
46
+ maximun = int(input('Greater possible number: '))
47
48
vet = [random.randint(min, max) for r in xrange(a_length)]
49
0 commit comments