{"ScriptPreparationCode":"window.arr1 = Array.from({\r\n length: 40\r\n}, () =\u003E Math.floor(Math.random() * 40));\r\nwindow.arr2 = Array.from({\r\n length: 40\r\n}, () =\u003E Math.floor(Math.random() * 40));\r\n\r\nfunction isSetEqual(xs, ys) {\r\n return xs.size === ys.size \u0026\u0026 [...xs].every((x) =\u003E ys.has(x));\r\n}","TestCases":[{"Name":"lodash","Code":"_.isEqual(window.arr1, window.arr2)","IsDeferred":false},{"Name":"set","Code":" isSetEqual(new Set(window.arr1), new Set(window.arr2));","IsDeferred":false}]}