{"ScriptPreparationCode":"window.a = Array(1_000_000).fill(null).flatMap(() =\u003E [1, 2, 3, 4, 5])\r\nwindow.b = [1, 2, 3, 4, 5]","TestCases":[{"Name":"One iteration","Code":"for (let i = 0, l = a.length; i \u003C l; i\u002B\u002B) {\r\n\tif(b.some(y =\u003E (a[i] \u002B y) === \u0027no\u0027)){\r\n break;\r\n }\r\n \tif (!b.some(y =\u003E a[i] === y)) {\r\n \tbreak; \r\n }\r\n}","IsDeferred":false},{"Name":"Two iterations","Code":"for (let i = 0, l = a.length; i \u003C l; i\u002B\u002B) {\r\n \tif(b.some(y =\u003E (a[i] \u002B y) === \u0027no\u0027)){\r\n break;\r\n }\r\n}\r\n\r\nfor (let i = 0, l = a.length; i \u003C l; i\u002B\u002B) {\r\n \tif (!b.some(y =\u003E a[i] === y)) {\r\n \tbreak; \r\n }\r\n}","IsDeferred":false}]}