{"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\tif(set.has(i)) {\r\n \tbool = true;\r\n };\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\tif (obj[i]) {\r\n \tbool = true\r\n }\r\n}","IsDeferred":false}]}