{"ScriptPreparationCode":"function getRandomInt(max) {\r\n return Math.floor(Math.random() * Math.floor(max));\r\n}","TestCases":[{"Name":"normal","Code":"let n = getRandomInt(100)\r\nconsole.log(n % 2 == 0)","IsDeferred":false},{"Name":"bitwise","Code":"let n = getRandomInt(100)\r\nconsole.log(n \u0026 1 == 0)","IsDeferred":false}]}