{"ScriptPreparationCode":"window.regularSmallerThan = (a, b) =\u003E {\r\n if (a \u003C b) return a;\r\n return b;\r\n};\r\n\r\nwindow.branchlessSmallerThan = (a, b) =\u003E {\r\n return a * (a \u003C b) \u002B b * (b \u003C a);\r\n};","TestCases":[{"Name":"with if statement","Code":"regularSmallerThan(Math.random(), Math.random());","IsDeferred":false},{"Name":"with branchless","Code":"branchlessSmallerThan(Math.random(), Math.random());","IsDeferred":false},{"Name":"control","Code":"(Math.random(), Math.random());","IsDeferred":false}]}