const totalRuns = 10000;
Initializing...
const x = []; x[0] = 0; x[1] = 0; x[2] = 0; x[3] = 0; x[4] = 0; x[5] = 0; x[6] = 0;
const x = new Array(7); x[0] = 0; x[1] = 0; x[2] = 0; x[3] = 0; x[4] = 0; x[5] = 0; x[6] = 0;
You can edit these tests or add more tests to this page by appending /edit to the URL.