{"ScriptPreparationCode":"function randomIntFromInterval(min, max) { // min and max included \r\n return Math.floor(Math.random() * (max - min \u002B 1) \u002B min)\r\n}\r\n\r\nvar tabl = Array.from({ length: 10000 }).map((value, i) =\u003E ({ id: i, value: randomIntFromInterval(0, i) }))","TestCases":[{"Name":"lodash partition","Code":"const [a, b] = _.partition(tabl, e =\u003E e.value % 2)","IsDeferred":false},{"Name":"lodash remove","Code":"const a = _.remove(tabl, e =\u003E e.value % 2)","IsDeferred":false}]}