{"ScriptPreparationCode":"function generateUUIDs(n) {\r\n const uuids = [];\r\n for (let i = 0; i \u003C n; i\u002B\u002B) {\r\n uuids.push(crypto.randomUUID());\r\n }\r\n return uuids;\r\n}\r\n\r\n// Example usage:\r\nconst numberOfUUIDs = 100000;\r\nvar uuids = generateUUIDs(numberOfUUIDs);","TestCases":[{"Name":"String Set","Code":"const set = new Set()\r\nfor (let index = 0; index \u003C uuids.length; index\u002B\u002B) {\r\n const uuid = uuids[index]\r\n set.add(uuid)\r\n}\r\nfor (let index = 0; index \u003C uuids.length; index\u002B\u002B) {\r\n const uuid = uuids[index]\r\n set.add(uuid)\r\n}","IsDeferred":false},{"Name":"Index Set","Code":"const set = new Set()\r\nfor (let index = 0; index \u003C uuids.length; index\u002B\u002B) {\r\n set.add(index)\r\n}\r\nfor (let index = 0; index \u003C uuids.length; index\u002B\u002B) {\r\n set.add(index)\r\n}","IsDeferred":false}]}