{"ScriptPreparationCode":"const a = 1000\r\nconst b = 1000\r\n\r\nvar arr = Array.from({\r\n length: a * b\r\n}, (_, k) =\u003E k)\r\n\r\nvar matrix = Array.from({\r\n length: a\r\n}, (_, i) =\u003E Array.from({\r\n length: b\r\n}, (_, j) =\u003E i \u002B \u0022/\u0022 \u002B j))","TestCases":[{"Name":"Matrix","Code":"matrix.forEach((row)=\u003E{\r\n row.forEach((i)=\u003E{\r\n \tconsole.log(i)\r\n })\r\n})","IsDeferred":false},{"Name":"Linear","Code":"arr.forEach((row)=\u003E{\r\n \tconsole.log(row) \r\n})","IsDeferred":false}]}