Ad

def should_return_1():
import random
x = random.random()
return x**0

Code
Diff
  • def should_return_1():
        import random
        x = random.random()
        return x**0
    • def should_return_1():
    • return 1
    • import random
    • x = random.random()
    • return x**0