{"ScriptPreparationCode":"this.numberA = Math.random() \u003E .5 || 0;\r\nthis.numberB = !this.numberA;","TestCases":[{"Name":"Math.min","Code":"return Math.min(this.numberA, this.numberB);","IsDeferred":false},{"Name":"if","Code":"if (this.numberA \u003C this.numberB)\r\n return this.numberA;\r\nelse\r\n return this.numberB;","IsDeferred":false},{"Name":"ternary","Code":"return (this.numberA \u003C this.numberB) ? this.numberA : this.numberB","IsDeferred":false},{"Name":"logical or","Code":"return this.numberA || this.numberB","IsDeferred":false}]}