Turing Complete

Turing Complete

View Stats:
I made a tiny tool to convert truth tables into logic expressions!
Hey folks

So I’ve been stuck a few times figuring out the right logic for some of the gate puzzles
I ended up writing a little script that lets you input a truth table (like the ones in the game), and it spits out a simplified Boolean expression — using `and`, `or`, `not`, with brackets.

For example:
- You input the table for something like “A OR B AND (not C)”
- It gives you the logic back, ready to build

It’s handy for cleaning up messy logic, especially in the bigger puzzles or when chaining gates.

Here’s the GitHub if you wanna try:
https://github.com/lixiasky/truth2logic-tc/tree/main
Would love to hear if it helps anyone, or if you find bugs 🙈
(I just made it today!)

Enjoy the game!