using System.Collections.Generic;
using System.Diagnostics;
public static void Main()
List<int> A = new List<int>();
List<int> B = new List<int>();
Random rnd = new Random();
for (int i = 0; i < 1000000; i++)
int randomNumber = rnd.Next() % 100000;
int randomNumber2 = rnd.Next() % 1000000;
public static void Function(List<int> array)
Stopwatch stopwatch = new Stopwatch();
for (int i = 0; i < array.Count; i++)
Console.WriteLine("Elapsed Time is {0} ms", stopwatch.ElapsedMilliseconds);