# L-29 MCS 260 Fri 18 Mar 2016 : sortrandnumb.py
"""
This program illustrates how to time the
sort of lists.  The optional command line
argument is the length of the list to sort.
"""
import sys
from random import gauss
# count number of arguments of command line
if len(sys.argv) < 2:
    N = int(input('Give #elements : '))
else:
    N = int(sys.argv[1]) # get argument
RNG = list(range(0, N))
NUM = [gauss(0, 1) for i in RNG]
NUM.sort()
