{"ScriptPreparationCode":"function testHypot() {\r\n for (let i=0; i \u003C 1000; i\u002B\u002B){\r\n for (let j=0; j \u003C 1000; j\u002B\u002B) {\r\n Math.hypot(i, j)\r\n }\r\n }\r\n}\r\nfunction testSqrt() {\r\n for (let i=0; i \u003C 1000; i\u002B\u002B){\r\n for (let j=0; j \u003C 1000; j\u002B\u002B) {\r\n Math.sqrt(i*i\u002Bj*j)\r\n }\r\n }\r\n}\r\n","TestCases":[{"Name":"Math.hypot","Code":"testHypot()","IsDeferred":false},{"Name":"Math.sqrt","Code":"testSqrt()","IsDeferred":false}]}