Skip to content

Commit a15fdba

Browse files
authored
Update InsertionSort.py
1 parent 72f86f2 commit a15fdba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

InsertionSort.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import random
22
a=[]
33
n=int(input())
4-
# Generating 200 random numbers to sort
4+
# Generating n random numbers between 0 and 200 to sort
55
for i in range (n):
66
a.append(random.randint(0,200))
77

0 commit comments

Comments
 (0)