Generation

generate functionFri, 28 Apr 2023

Ley de Morgan 1 ;y su representacion esquematica

def f(x): if (x > 3): return 1 else: return 0 def fm1(x): return not (f(x) and not f(x)) fm1(3)

Want to kickstart your project?Use the new AI Studio to create your code