Advertisement
Farz0l1x

Untitled

Apr 17th, 2024
380
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 w and ((x <= y) == (y <= z))
  4. for a in product([0, 1], repeat = 6):
  5.     table = [(0, a[0], a[1], a[2]), (0, 0, a[3], 0), (0, a[4], a[5], 0)]
  6.     if len(table) == len(set(table)):
  7.         for p in permutations('xyzw'):
  8.             if [f(**dict(zip(p, r))) for r in table] == [1, 1, 1]:
  9.                 print(p)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement