{"ScriptPreparationCode":null,"TestCases":[{"Name":"big i, small j","Code":"let cnt = 0;\r\nfor (let i = 0; i \u003C 1000000; i\u002B\u002B) {\r\n for (let j = 0; j \u003C 10; j\u002B\u002B) {\r\n cnt\u002B\u002B;\r\n }\r\n}\r\nconsole.log(cnt);","IsDeferred":false},{"Name":"small i, big j","Code":"let cnt = 0;\r\nfor (let i = 0; i \u003C 10; i\u002B\u002B) {\r\n for (let j = 0; j \u003C 1000000; j\u002B\u002B) {\r\n cnt\u002B\u002B;\r\n }\r\n}\r\nconsole.log(cnt);","IsDeferred":false}]}