{"ScriptPreparationCode":"const set = new Set();\r\nconst obj = {};\r\n\r\nconst length = 5000;\r\n\r\nfor (let i = 0; i \u003C length; i\u002B\u002B) {\r\n set.add(i);\r\n obj[i] = true;\r\n}","TestCases":[{"Name":"Set","Code":"let bool;\r\n\r\nfor (let i = 0; i \u003C length * 2; i\u002B\u002B) {\r\n bool = set.has(i);\r\n}","IsDeferred":false},{"Name":"Obj","Code":"let bool;\r\n\r\nfor (let i = 0; i \u003C length * 2; i\u002B\u002B) {\r\n bool = obj[i];\r\n}","IsDeferred":false}]}