Advertisement
Farz0l1x

Untitled

May 1st, 2024
749
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.36 KB | None | 0 0
  1. from itertools import *
  2. def f(x, y, z, w):
  3.     return (x and not(z)) or (y == z) or not(w)
  4. for a in product([0, 1], repeat = 4):
  5.     table = [(a[0], a[1], 0, 0), (1, 0, a[2], 0), (1, 0, 1, a[3])]
  6.     if len(set(table)) == len(table):
  7.         for p in permutations('xyzw'):
  8.             if [f(**dict(zip(p, r))) for r in table] == [0, 0, 0]:
  9.                 print(p)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement