{"ScriptPreparationCode":"var max = 100000; \r\nvar nums = [],\r\n rands = [];\r\n\r\nfor (var i = 0; i \u003C max; i\u002B\u002B) {\r\n const randBool = Math.floor(Math.random() * 2) === 1 ? true : false;\r\n nums.push(i);\r\n if (randBool) {\r\n rands.push(i);\r\n }\r\n}\r\n\r\nvar temp = nums.slice();","TestCases":[{"Name":"Vanilla","Code":"temp = temp.filter((item) =\u003E rands.includes(item));","IsDeferred":false},{"Name":"Lodash","Code":"_.remove(temp, (item) =\u003E rands.includes(item));","IsDeferred":false}]}