We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72f86f2 commit a15fdbaCopy full SHA for a15fdba
InsertionSort.py
@@ -1,7 +1,7 @@
1
import random
2
a=[]
3
n=int(input())
4
-# Generating 200 random numbers to sort
+# Generating n random numbers between 0 and 200 to sort
5
for i in range (n):
6
a.append(random.randint(0,200))
7
0 commit comments